From 077093a153089a284338aed160ff08db027a6e79 Mon Sep 17 00:00:00 2001 From: Quinn Casey Date: Mon, 28 Feb 2022 15:08:10 -0800 Subject: [PATCH] Attempt to fix timeout --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 67dddbec2..d953729a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:16 AS compile-frontend COPY . /src WORKDIR /src/src-ui -RUN npm install +RUN npm update npm -g && npm install RUN ./node_modules/.bin/ng build --prod