add python installation to dockerfile

This commit is contained in:
brent 2020-09-06 17:20:49 -04:00
parent ac2f953b90
commit 013ffa318f
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
FROM node:10-alpine
RUN sudo apt-get update
RUN sudo apt-get install python
RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app
WORKDIR /home/node/app