From e8ade4866b8d17c805a156103f33a23e43db2b35 Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Sat, 21 May 2022 02:30:00 -0500 Subject: [PATCH] Added python3 to docker image of web --- web/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/Dockerfile b/web/Dockerfile index 9aa59c2a52..b4c0e57a5d 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -7,6 +7,8 @@ RUN chown node:node /usr/src/app COPY --chown=node:node package*.json ./ +RUN apk add --update-cache build-base python3 + RUN npm install COPY --chown=node:node . .