51 lines
1.6 KiB
Docker
51 lines
1.6 KiB
Docker
# The web Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
|
|
# Make sure you update this Dockerfile, the Dockerfile in the web workspace and copy that over to Dockerfile in the docs.
|
|
ARG NPM_REGISTRY=https://registry.npmjs.org
|
|
FROM node:24.14.1-alpine AS base
|
|
ARG NPM_REGISTRY
|
|
ENV COREPACK_NPM_REGISTRY=${NPM_REGISTRY} \
|
|
npm_config_registry=${NPM_REGISTRY}
|
|
|
|
FROM base AS builder
|
|
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
|
RUN apk add --no-cache libc6-compat
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
RUN npm install -g turbo
|
|
COPY . .
|
|
RUN turbo prune --scope=api --docker
|
|
|
|
# Add lockfile and package.json's of isolated subworkspace
|
|
FROM base AS installer
|
|
|
|
RUN apk add --no-cache libc6-compat
|
|
|
|
WORKDIR /app
|
|
|
|
RUN corepack enable
|
|
|
|
# First install dependencies (as they change less often)
|
|
COPY --from=builder /app/out/json/ .
|
|
COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml
|
|
RUN pnpm install --frozen-lockfile --ignore-scripts --fetch-retries 10 --fetch-timeout 120000
|
|
RUN pnpm rebuild bcrypt esbuild @swc/core sharp
|
|
|
|
# Build the project and its dependencies
|
|
COPY --from=builder /app/out/full/ .
|
|
COPY turbo.json ./
|
|
|
|
RUN pnpm exec turbo run build --filter=api...
|
|
|
|
FROM base AS runner
|
|
WORKDIR /app
|
|
|
|
# Don't run production as root
|
|
RUN addgroup --system --gid 1001 nodejs
|
|
RUN adduser --system --uid 1001 nestjs
|
|
USER nestjs
|
|
|
|
COPY --from=installer --chown=nestjs:nodejs /app .
|
|
|
|
CMD ["node", "-r", "source-map-support/register", "apps/api/dist/main.js"]
|