This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/apps/frontend/Dockerfile

64 lines
1.6 KiB
Docker
Raw Normal View History

2024-09-12 12:05:07 +00:00
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
2024-09-11 14:48:18 +00:00
FROM base AS builder
2024-10-03 18:45:30 +00:00
RUN apk update
RUN apk add --no-cache libc6-compat
2024-09-11 14:48:18 +00:00
WORKDIR /app
2024-09-30 08:02:16 +00:00
2024-10-03 18:46:44 +00:00
RUN pnpm i -g turbo@^2
2024-10-03 18:45:30 +00:00
COPY . .
2024-09-30 08:02:16 +00:00
2024-10-04 11:06:28 +00:00
# Temporarily skip prune for debugging
# RUN turbo prune frontend --docker
2024-09-11 14:48:18 +00:00
2024-10-03 18:45:30 +00:00
# Add lockfile and package.json's of isolated subworkspace
FROM base AS installer
RUN apk update
2024-10-03 18:53:39 +00:00
RUN apk add --no-cache python3 make g++ gcc pkgconfig pixman cairo-dev libjpeg-turbo-dev pango-dev giflib-dev
2024-10-03 18:45:30 +00:00
WORKDIR /app
2024-09-13 19:54:34 +00:00
2024-10-03 18:53:39 +00:00
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
ARG SENTRY_AUTH_TOKEN
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
2024-10-03 18:59:56 +00:00
RUN pnpm i -g turbo@^2
2024-10-04 11:06:28 +00:00
# Install dependencies after copying pruned lockfile
2024-10-03 18:57:41 +00:00
COPY --from=builder /app/out/json/ .
RUN pnpm install --frozen-lockfile --quiet
2024-10-04 11:06:28 +00:00
# Debug step to verify pruned output
RUN ls -al /app/out/full
2024-10-03 18:45:30 +00:00
# Build the project
COPY --from=builder /app/out/full/ .
RUN pnpm turbo run build --filter=frontend...
2024-09-11 14:48:18 +00:00
FROM base AS runner
WORKDIR /app
2024-10-03 18:53:39 +00:00
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
RUN apk add --no-cache cairo pango libjpeg-turbo giflib
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
2024-10-03 18:45:30 +00:00
# Don't run production as root
2024-09-11 14:48:18 +00:00
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
USER nextjs
2024-09-24 09:37:30 +00:00
2024-10-04 11:06:28 +00:00
# Copy build output
2024-10-03 18:45:30 +00:00
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
2024-09-24 09:37:30 +00:00
2024-10-04 11:06:28 +00:00
CMD node apps/frontend/server.js