From 007cb16c243a050e7dec33dacd75781fea55ee4d Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 4 May 2021 16:23:03 +0000 Subject: [PATCH] =?UTF-8?q?fix(web-deps):=20=F0=9F=93=A6=F0=9F=90=9B=20spe?= =?UTF-8?q?cify=20add=20of=20python3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 92e20dfe7..1527469be 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -7,7 +7,7 @@ COPY server/conf.d /etc/nginx/conf.d FROM node:alpine as build # https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md#node-gyp-alpine -RUN apk add --no-cache python make g++ +RUN apk add --no-cache python3 make g++ # install WORKDIR /app @@ -20,4 +20,4 @@ RUN INLINE_RUNTIME_CHUNK=false npm run build # final FROM base as final -COPY --from=build /app/build /usr/share/nginx/html \ No newline at end of file +COPY --from=build /app/build /usr/share/nginx/html