From 3d76084e58444e842da03ab33c3017b54393d2ef Mon Sep 17 00:00:00 2001 From: Michael Schramm Date: Sun, 31 May 2020 23:47:23 +0200 Subject: [PATCH] add missing build steps to container --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e917696..ee6111f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,7 @@ WORKDIR /usr/src/app COPY . ./ +RUN yarn install --frozen-lock-file +RUN yarn build + CMD [ "yarn", "start" ]