Skip to content

Commit

Permalink
fix: correct pnpm store path?
Browse files Browse the repository at this point in the history
  • Loading branch information
tefkah committed Feb 19, 2025
1 parent a0d08fd commit fdb87c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fdb87c4

Please sign in to comment.