scoresaber-reloadedv3/backend/Dockerfile
Liam 98c52e5525
Some checks failed
Deploy Backend / deploy (push) Failing after 25s
Deploy Frontend / deploy (push) Failing after 10s
let's try this again
2024-10-04 20:35:44 +01:00

16 lines
376 B
Docker

FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
# Install dependencies and build the app
FROM base AS builder
WORKDIR /app
COPY package.json* pnpm-lock.yaml* ./
RUN pnpm install --frozen-lockfile --quiet
COPY . .
RUN pnpm run build
# Final stage to run the app
FROM base AS runner
WORKDIR /app
COPY --from=builder /app/dist ./dist
EXPOSE 3000
CMD ["pnpm", "start"]