oopsie
Some checks failed
Deploy Backend / deploy (push) Successful in 1m26s
Deploy Frontend / deploy (push) Failing after 10s

This commit is contained in:
Lee 2024-10-04 20:49:45 +01:00
parent 98c25afd9f
commit 58f1c651b4

@ -2,15 +2,21 @@ 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 --filter backend
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"]