1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-07-17 16:38:59 +00:00

fix(Dockerfile): copy pnpm-workspace.yaml before install

This commit is contained in:
tanasegabriel 2026-07-13 21:39:51 +00:00 committed by Bastien Wirtz
parent a31fa7410d
commit bfcf203a98

View file

@ -8,7 +8,7 @@ RUN corepack enable && corepack use pnpm@10
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .