oopsie doodle
Some checks failed
Deploy SSR / deploy (push) Failing after 32s

This commit is contained in:
Lee 2024-09-13 20:54:34 +01:00
parent d46b717ead
commit 74dfc2faa0

@ -14,6 +14,10 @@ COPY --from=deps /app/node_modules ./node_modules
COPY . .
ENV NEXT_TELEMETRY_DISABLED 1
# Add the commit hash
ARG GIT_REV
ENV GIT_REV ${GIT_REV}
# Build the app
RUN pnpm run build
@ -24,10 +28,6 @@ WORKDIR /app
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
# Add the commit hash
ARG GIT_REV
ENV GIT_REV ${GIT_REV}
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs