switch to docker based web builds

This commit is contained in:
Blake Blackshear
2021-01-26 21:40:33 -06:00
parent bca0531963
commit b022bec1fa
3 changed files with 13 additions and 2 deletions
+9
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