0

Update apps/api/Dockerfile
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 5m4s

This commit is contained in:
Nikolai X. Shadeuxs 2024-06-19 03:56:41 -04:00
parent 7f715790b9
commit e11c7d2e5c

View File

@ -15,7 +15,7 @@ COPY /cache /pnpm/store
COPY apps/api/package.json apps/api/pnpm-lock.yaml ./
COPY . .
RUN pnpm install --frozen-lockfile
RUN pnpm run build
RUN pnpm run build || { echo 'Build failed'; exit 1; }
# Install packages needed for deployment
FROM base