switch to docker based web builds

This commit is contained in:
Blake Blackshear
2021-01-15 07:53:44 -06:00
parent 614f8abfef
commit 4bbffa97df
3 changed files with 13 additions and 2 deletions

9
docker/Dockerfile.web Normal file
View File

@@ -0,0 +1,9 @@
ARG NODE_VERSION=14.0
FROM node:${NODE_VERSION}
WORKDIR /opt/frigate
COPY . .
RUN npm install && npm run build