From 1daf4a1cd1455cc78a9b5843c8fc411d327d89ef Mon Sep 17 00:00:00 2001 From: Chris Grimmett Date: Mon, 8 Apr 2024 10:30:17 -0800 Subject: [PATCH] use PATH env --- strapi.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strapi.dockerfile b/strapi.dockerfile index a2194c9..c8f995a 100644 --- a/strapi.dockerfile +++ b/strapi.dockerfile @@ -33,7 +33,7 @@ COPY pnpm-lock.yaml package.json ./ RUN pnpm install --frozen-lockfile COPY ./packages/strapi . -# ENV PATH=/app/node_modules/.bin:$PATH +ENV PATH=/app/node_modules/.bin:$PATH RUN chown -R node:node /app USER node # RUN pnpm run build