From 131a1397e3dd783cd769ba28def5d38feef25a53 Mon Sep 17 00:00:00 2001 From: Chris Grimmett Date: Mon, 8 Apr 2024 15:08:06 -0800 Subject: [PATCH] shamefully hoist --- strapi.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strapi.dockerfile b/strapi.dockerfile index 0a32bd3..ae69138 100644 --- a/strapi.dockerfile +++ b/strapi.dockerfile @@ -7,7 +7,7 @@ RUN corepack enable RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev libc6-compat git nasm bash gcompat WORKDIR /app COPY pnpm-lock.yaml package.json ./ -RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile +RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile --shamefully-hoist COPY ./packages/strapi . RUN chown -R node:node /app USER node