From 2e5091a0209c5eeef6070601754d6aa60ea6608f Mon Sep 17 00:00:00 2001 From: Per-Arne Andersen Date: Fri, 4 Sep 2020 10:08:05 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b13ff7d..53c2387 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:14-alpine COPY ./wg_dashboard_frontend /tmp/build WORKDIR /tmp/build RUN apk add --no-cache build-base python3-dev && \ -npm install && npm install -g @angular/cli && \ +npm cache clean --force && npm install && npm install -g @angular/cli && \ ng build --configuration="production" && \ rm -rf node_modules && \ apk del build-base python3-dev