scoresaber-reloadedv3/apps/frontend/Dockerfile

38 lines
958 B
Docker
Raw Normal View History

2024-10-04 15:43:12 +00:00
FROM fascinated/docker-images:nodejs_20_with_pnpm
2024-10-04 16:21:44 +00:00
FROM base AS installer
2024-10-04 15:43:12 +00:00
WORKDIR /app
COPY . .
RUN pnpm install
ENV NEXT_TELEMETRY_DISABLED 1
2024-10-04 16:21:44 +00:00
# Add the commit hash
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
2024-10-04 15:43:12 +00:00
RUN pnpm i -g turbo@^2
RUN turbo prune frontend --docker
2024-10-04 15:51:17 +00:00
RUN turbo run build --filter=frontend
2024-10-04 15:43:12 +00:00
2024-10-04 16:21:44 +00:00
FROM base AS runner
2024-10-04 15:43:12 +00:00
# Add the commit hash
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
EXPOSE 3000
2024-10-04 16:21:44 +00:00
# Don't run production as root
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
USER nextjs
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/standalone ./
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/static ./apps/frontend/.next/static
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/public ./apps/frontend/public
CMD node /app/apps/frontend/server.js