Added python3 to prod target of web Dockerfile

pull/168/head
Alex Tran 2022-05-21 02:34:39 +07:00
parent e8ade4866b
commit d9f918005a
1 changed files with 2 additions and 0 deletions

@ -29,6 +29,8 @@ RUN chown node:node /usr/src/app
COPY --chown=node:node package*.json ./
COPY --chown=node:node . .
RUN apk add --update-cache build-base python3
RUN npm install
EXPOSE 3000