Update 'Dockerfile'

- fixed apk call, added forgotten upgrade command
This commit is contained in:
DarkSpir 2023-07-24 20:51:36 +02:00
parent e942849be5
commit c77c17b09a
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM node:current-alpine
ENTRYPOINT camera.ui
RUN apk --update --no-cache && \
RUN apk -U --no-cache upgrade && \
rm -rf /var/cache/apk/*
RUN npm i -g camera.ui@latest --unsafe-perm