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

View file

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