46 lines
1.4 KiB
Docker
46 lines
1.4 KiB
Docker
# This Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
|
|
# Make sure you update both files!
|
|
|
|
FROM node:alpine AS builder
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
|
ENV PNPM_HOME=/usr/local/bin
|
|
# 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
|
|
RUN apk update
|
|
# Set working directory
|
|
WORKDIR /app
|
|
RUN pnpm add -g turbo@1.12.4 dotenv-cli
|
|
COPY . .
|
|
RUN turbo prune --scope=api --docker
|
|
|
|
# Add lockfile and package.json's of isolated subworkspace
|
|
FROM node:alpine AS installer
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate
|
|
ENV PNPM_HOME=/usr/local/bin
|
|
RUN apk add --no-cache libc6-compat
|
|
RUN apk update
|
|
WORKDIR /app
|
|
|
|
# First install dependencies (as they change less often)
|
|
COPY .gitignore .gitignore
|
|
COPY --from=builder /app/out/json/ .
|
|
COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml
|
|
COPY --from=builder /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml
|
|
RUN pnpm install
|
|
|
|
# Build the project and its dependencies
|
|
COPY --from=builder /app/out/full/ .
|
|
COPY turbo.json turbo.json
|
|
RUN pnpm dotenv -e .env turbo run build --filter=api...
|
|
|
|
FROM node:alpine AS runner
|
|
WORKDIR /app
|
|
|
|
# Don't run production as root
|
|
RUN addgroup --system --gid 1001 nestjs
|
|
RUN adduser --system --uid 1001 nestjs
|
|
USER nestjs
|
|
COPY --from=installer /app .
|
|
|
|
CMD node apps/api/dist/main.js
|