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

This commit is contained in:
Lee
2024-10-04 20:38:36 +01:00
parent 98c52e5525
commit 4a2c6a83e6
2 changed files with 14 additions and 16 deletions

View File

@ -3,9 +3,9 @@ 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* ./
COPY ./backend/package.json* ./backend/pnpm-lock.yaml* ./
RUN pnpm install --frozen-lockfile --quiet
COPY . .
COPY ./backend .
RUN pnpm run build
# Final stage to run the app