fix(web-deps): 📦🐛 specify add of python3

This commit is contained in:
Collin M. Barrett 2021-05-04 16:23:03 +00:00
parent 47e0b6c8d8
commit 007cb16c24

View file

@ -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
COPY --from=build /app/build /usr/share/nginx/html