mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
10 lines
115 B
Docker
10 lines
115 B
Docker
ARG NODE_VERSION=14.0
|
|
|
|
FROM node:${NODE_VERSION}
|
|
|
|
WORKDIR /opt/frigate
|
|
|
|
COPY . .
|
|
|
|
RUN npm install && npm run build
|