7
Some checks failed
Deploy Backend / deploy (push) Failing after 28s
Deploy Frontend / deploy (push) Failing after 10s

This commit is contained in:
Lee
2024-10-04 20:42:29 +01:00
parent aff4ef4209
commit 5d439c3ad6
3 changed files with 9 additions and 7 deletions

View File

@ -5,12 +5,12 @@ FROM base AS builder
WORKDIR /app
COPY package.json* pnpm-lock.yaml* ./
RUN pnpm install --frozen-lockfile --quiet --filter backend
COPY ./backend .
RUN pnpm run build
COPY . .
RUN pnpm run build --filter backend
# Final stage to run the app
FROM base AS runner
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/backend/dist ./backend/dist
EXPOSE 3000
CMD ["pnpm", "start"]
CMD ["pnpm", "start:backend"]