Added missing npm i to Dockerfile.

This commit is contained in:
Keanu Timmermans 2020-08-31 21:18:44 +02:00
parent a829e3d0bd
commit f8cd32914c
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@ FROM node:current-alpine
COPY . .
RUN npm i
RUN npm run build
CMD ["npm", "start"]