This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/backend/Dockerfile
Liam 58f1c651b4
Some checks failed
Deploy Backend / deploy (push) Successful in 1m26s
Deploy Frontend / deploy (push) Failing after 10s
oopsie
2024-10-04 20:49:45 +01:00

22 lines
368 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 . .
RUN pnpm install --filter backend
RUN pnpm run build:backend
# Final stage to run the app
FROM base AS runner
WORKDIR /app
COPY --from=builder /app/backend/dist ./backend/dist
EXPOSE 3000
CMD ["pnpm", "start:backend"]