1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-09 07:25:24 +02:00

missing home dir

This commit is contained in:
NavyStack 2023-12-19 16:48:18 +09:00
parent 4c2b5b891d
commit 3e9df59c55

View file

@ -9,7 +9,7 @@ RUN apt-get update && \
WORKDIR /planka/server
COPY server/package.json server/pnpm-lock.yaml ./
RUN --mount=type=cache,id=pnpm-store,target=/.pnpm-store \
RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store \
pnpm install --frozen-lockfile --prod
COPY server .
@ -17,7 +17,7 @@ COPY server .
WORKDIR /planka/client
COPY client/package.json client/pnpm-lock.yaml ./
RUN --mount=type=cache,id=pnpm-store,target=/.pnpm-store \
RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store \
pnpm install --frozen-lockfile --prod
COPY client .