2024-10-04 16:22:08 +00:00
|
|
|
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
|
2024-10-04 15:43:12 +00:00
|
|
|
|
2024-10-04 16:46:38 +00:00
|
|
|
FROM base AS builder
|
|
|
|
RUN apk update
|
|
|
|
RUN apk add --no-cache libc6-compat
|
|
|
|
# Set working directory
|
2024-10-04 15:43:12 +00:00
|
|
|
WORKDIR /app
|
2024-10-04 16:46:38 +00:00
|
|
|
|
|
|
|
RUN pnpm i -g turbo@^2
|
2024-10-04 15:43:12 +00:00
|
|
|
COPY . .
|
|
|
|
|
2024-10-04 16:46:38 +00:00
|
|
|
RUN turbo prune frontend --docker
|
2024-10-04 15:43:12 +00:00
|
|
|
|
2024-10-04 16:46:38 +00:00
|
|
|
FROM base AS installer
|
|
|
|
WORKDIR /app
|
2024-10-04 15:43:12 +00:00
|
|
|
|
2024-10-04 16:21:44 +00:00
|
|
|
# Add the commit hash
|
|
|
|
ARG GIT_REV
|
|
|
|
ENV GIT_REV=${GIT_REV}
|
|
|
|
|
2024-10-04 16:46:38 +00:00
|
|
|
# Add the sentry auth token
|
|
|
|
ARG SENTRY_AUTH_TOKEN
|
|
|
|
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
|
|
|
|
|
2024-10-04 15:43:12 +00:00
|
|
|
RUN pnpm i -g turbo@^2
|
2024-10-04 16:46:38 +00:00
|
|
|
|
|
|
|
# First install the dependencies (as they change less often)
|
|
|
|
COPY --from=builder /app/out/json/ .
|
|
|
|
RUN pnpm install
|
|
|
|
|
|
|
|
# Build the project
|
|
|
|
COPY --from=builder /app/out/full/ .
|
|
|
|
|
|
|
|
RUN pnpm 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 16:24:52 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
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
|
2024-10-04 16:42:32 +00:00
|
|
|
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/standalone ./apps/frontend
|
2024-10-04 16:21:44 +00:00
|
|
|
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-10-04 16:42:32 +00:00
|
|
|
CMD node /app/apps/frontend/server.js
|