fix(docker): missing file

This commit is contained in:
Elian Doran 2025-04-29 12:19:45 +03:00
parent 6aaa25ef9d
commit 37708c8866
No known key found for this signature in database

View File

@ -3,7 +3,7 @@ FROM node:22.14.0-alpine AS builder
# Install native dependencies since we might be building cross-platform.
WORKDIR /usr/src/app
COPY /apps/server/dist/package.json /apps/server/dist/pnpm-lock.yaml /apps/server/pnpm-workspace.yaml /usr/src/app/
COPY /apps/server/dist/package.json /apps/server/dist/pnpm-lock.yaml /usr/src/app/
RUN pnpm install --frozen-lockfile --prod && pnpm rebuild
FROM node:22.14.0-alpine