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

22 lines
368 B
Docker
Raw Normal View History

2024-10-04 20:35:44 +01:00
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
# Install dependencies and build the app
FROM base AS builder
2024-10-04 20:49:45 +01:00
2024-10-04 20:35:44 +01:00
WORKDIR /app
2024-10-04 20:49:45 +01:00
2024-10-04 20:42:29 +01:00
COPY . .
2024-10-04 20:49:45 +01:00
RUN pnpm install --filter backend
2024-10-04 20:44:15 +01:00
RUN pnpm run build:backend
2024-10-04 20:35:44 +01:00
# Final stage to run the app
FROM base AS runner
2024-10-04 20:49:45 +01:00
2024-10-04 20:35:44 +01:00
WORKDIR /app
2024-10-04 20:49:45 +01:00
2024-10-04 20:42:29 +01:00
COPY --from=builder /app/backend/dist ./backend/dist
2024-10-04 20:49:45 +01:00
2024-10-04 20:35:44 +01:00
EXPOSE 3000
2024-10-04 20:49:45 +01:00
2024-10-04 20:42:29 +01:00
CMD ["pnpm", "start:backend"]