frontend-ui: Don't need python2 anymore

This commit is contained in:
nemunaire 2023-04-03 12:04:14 +02:00
parent d98d846cd6
commit bd9d9e9402
1 changed files with 1 additions and 3 deletions

View File

@ -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 && \