From bd9d9e94028028754fc07d6c0ac56882f8922c8a Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Mon, 3 Apr 2023 12:04:14 +0200 Subject: [PATCH] frontend-ui: Don't need python2 anymore --- Dockerfile-frontend-ui | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile-frontend-ui b/Dockerfile-frontend-ui index 7ed18f53..2009e459 100644 --- a/Dockerfile-frontend-ui +++ b/Dockerfile-frontend-ui @@ -1,9 +1,7 @@ -FROM node:19-alpine3.15 as nodebuild +FROM node:19-alpine as nodebuild WORKDIR /ui -RUN apk --no-cache add python2 build-base - COPY frontend/ui/ . RUN npm install --network-timeout=100000 && \