mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
37 lines
1.4 KiB
Docker
37 lines
1.4 KiB
Docker
FROM node:22.4.1-slim AS node-pnpm
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
RUN corepack enable
|
|
WORKDIR /usr/src/app
|
|
|
|
FROM node-pnpm AS builder
|
|
RUN pnpm install --global turbo@2.0.10
|
|
COPY ./ ./
|
|
RUN turbo prune @repo/website --docker
|
|
|
|
FROM node-pnpm AS installer
|
|
ENV IS_STANDALONE=true
|
|
|
|
COPY .gitignore .gitignore
|
|
COPY --from=builder /usr/src/app/out/json/ ./
|
|
COPY --from=builder /usr/src/app/out/pnpm-lock.yaml ./pnpm-lock.yaml
|
|
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
|
|
COPY --from=builder /usr/src/app/out/full/ ./
|
|
COPY turbo.json turbo.json
|
|
RUN pnpm --filter=@repo/website... exec turbo run build
|
|
|
|
FROM node-pnpm AS runner
|
|
ENV NODE_ENV=production
|
|
ENV HOSTNAME=0.0.0.0
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
ENV IS_STANDALONE=true
|
|
|
|
RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 applicationrunner
|
|
USER applicationrunner
|
|
COPY --from=installer /usr/src/app/apps/website/next.config.js ./
|
|
COPY --from=installer /usr/src/app/apps/website/package.json ./
|
|
COPY --from=installer --chown=applicationrunner:nodejs /usr/src/app/apps/website/.next/standalone ./
|
|
COPY --from=installer --chown=applicationrunner:nodejs /usr/src/app/apps/website/.next/static ./apps/website/.next/static
|
|
COPY --from=installer --chown=applicationrunner:nodejs /usr/src/app/apps/website/public ./apps/website/public
|
|
CMD ["node", "apps/website/server.js"]
|