From f8cd32914cb3c2626106cf92759af269cceee8bf Mon Sep 17 00:00:00 2001 From: Keanu Date: Mon, 31 Aug 2020 21:18:44 +0200 Subject: [PATCH] Added missing npm i to Dockerfile. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 35723a0..ab33a22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM node:current-alpine COPY . . +RUN npm i + RUN npm run build CMD ["npm", "start"] \ No newline at end of file