Fixing Dockerfile (#440)

This commit is contained in:
koyu 2018-08-19 06:20:33 +02:00 committed by Nolan Lawson
parent b93212f57b
commit a1b89805e7
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ ADD . /app
# Install updates and NodeJS+Dependencies
RUN apk update && apk upgrade
RUN apk add nodejs git python build-base clang
RUN apk add nodejs npm git python build-base clang
# Upgrading NPM
RUN npm i npm@latest -g
@ -20,4 +20,4 @@ RUN npm run build
EXPOSE 4002
# Setting run-command
CMD PORT=4002 npm start
CMD PORT=4002 npm start