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

16 lines
425 B
Docker
Raw Normal View History

2024-10-04 19:35:44 +00:00
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
# Install dependencies and build the app
FROM base AS builder
WORKDIR /app
2024-10-04 19:39:58 +00:00
COPY package.json* pnpm-lock.yaml* ./
RUN pnpm install --frozen-lockfile --quiet --filter backend
2024-10-04 19:42:29 +00:00
COPY . .
2024-10-04 19:44:15 +00:00
RUN pnpm run build:backend
2024-10-04 19:35:44 +00:00
# Final stage to run the app
FROM base AS runner
WORKDIR /app
2024-10-04 19:42:29 +00:00
COPY --from=builder /app/backend/dist ./backend/dist
2024-10-04 19:35:44 +00:00
EXPOSE 3000
2024-10-04 19:42:29 +00:00
CMD ["pnpm", "start:backend"]