removed sudo

This commit is contained in:
brent 2020-09-06 17:28:23 -04:00
parent 4912ce6f61
commit 209b3aaa45
1 changed files with 2 additions and 2 deletions

View File

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