diff --git a/Dockerfile b/Dockerfile index 2fc603b..66cb771 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,9 @@ RUN mkdir /app WORKDIR /app ADD ./frontend/package.json . ADD ./frontend/yarn.lock . -RUN yarn install +RUN yarn install --network-timeout 300000 COPY ./frontend/ . -RUN yarn build +RUN yarn build --production=true #Building main conteiner