1
0
Fork 0

chore(node/webui): update node to 12.11 version

This commit is contained in:
Antoine Caron 2019-10-14 17:18:04 +02:00 committed by Traefiker Bot
parent cb3328dca3
commit 0048156379
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
# WEBUI
FROM node:8.15.0 as webui
FROM node:12.11 as webui
ENV WEBUI_DIR /src/webui
RUN mkdir -p $WEBUI_DIR
@ -7,7 +7,7 @@ RUN mkdir -p $WEBUI_DIR
COPY ./webui/ $WEBUI_DIR/
WORKDIR $WEBUI_DIR
RUN yarn install
RUN npm install
RUN npm run build