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