7
Some checks failed
Deploy Backend / deploy (push) Failing after 33s
Deploy Frontend / deploy (push) Failing after 13s

This commit is contained in:
Lee
2024-10-04 20:44:15 +01:00
parent 5d439c3ad6
commit 81092225cf
2 changed files with 8 additions and 4 deletions

View File

@ -6,7 +6,7 @@ WORKDIR /app
COPY package.json* pnpm-lock.yaml* ./
RUN pnpm install --frozen-lockfile --quiet --filter backend
COPY . .
RUN pnpm run build --filter backend
RUN pnpm run build:backend
# Final stage to run the app
FROM base AS runner