diff --git a/Dockerfile b/Dockerfile index 1099b87..c6e0e9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -313,6 +313,12 @@ ENV GOTRUE_DB_MIGRATIONS_PATH=/usr/local/etc/auth/migrations #========================================== storage-api ==================================================== ARG VERSION ENV VERSION=$VERSION + +RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ + apt-get update && \ + apt-get install -y nodejs && \ + npm install -g npm@10.8.2 pnpm@10.9.0 + COPY --from=s3final node_modules /supabase/storage-api/node_modules COPY --from=s3final dist /supabase/storage-api/dist COPY --from=s3final migrations /supabase/storage-api/migrations \ No newline at end of file