diff --git a/Dockerfile b/Dockerfile index 266f448d0..9f949b340 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,9 +48,12 @@ COPY pnpm-lock.yaml ./ # Could possibly be sped up using `turbo prune` # https://turbo.build/repo/docs/guides/tools/docker -RUN --mount=type=bind,source=${PNPM_STORE_PATH},target=/root/.pnpm-store \ +RUN --mount=type=bind,source=${PNPM_STORE_PATH},target=/root/.local/share/pnpm/store/v10 \ pnpm fetch +RUN ls -la +RUN echo "PNPM_STORE_PATH: $(pnpm store path)" + # Install dependencies we only need to run pnpm install RUN apk add g++ make py3-pip