From aa9cfceba98b662a606cf43dec0be8b473db039f Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Sat, 12 Jan 2019 15:50:51 +0100 Subject: [PATCH] Try to fix build issues --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ed6c274ce..750d284dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ CMD ["yarn", "run", "start"] FROM base as builder RUN yarn install --frozen-lockfile --non-interactive COPY . . +RUN cp .env.template .env RUN yarn run build # reduce image size with a multistage build