camera.ui-docker/Dockerfile
DarkSpir e942849be5 Update 'Dockerfile'
- Changed build container to official node.js one set up on latest apline linux
- Added OS package updates to build process
2023-07-24 20:18:15 +02:00

8 lines
154 B
Docker

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