From b731200b95b3f9fef1363ea4fe216b7512ec0363 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Fri, 4 Sep 2020 23:53:56 +0100 Subject: [PATCH] Update Dockerfile Fix --prod build issue --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 0c91bf4..6b6e361 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -2,7 +2,7 @@ FROM node:14-stretch as build-stage WORKDIR /app COPY package*.json ./ -RUN yarn install --production +RUN yarn install COPY . . COPY .eslintrc.js ./ RUN yarn build --production