oopsie
This commit is contained in:
parent
58f1c651b4
commit
9d83a95912
@ -1,8 +1,4 @@
|
||||
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
|
||||
|
||||
# Install dependencies and build the app
|
||||
FROM base AS builder
|
||||
|
||||
FROM fascinated/docker-images:nodejs_20_with_pnpm
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
@ -10,13 +6,8 @@ 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
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["pnpm", "start:backend"]
|
Reference in New Issue
Block a user