mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
11 lines
177 B
Docker
11 lines
177 B
Docker
ARG NODE_VERSION=14.16
|
|
|
|
FROM node:${NODE_VERSION}
|
|
|
|
WORKDIR /opt/build
|
|
|
|
COPY . .
|
|
|
|
RUN npm install --no-progress && \
|
|
npm prune --production --ignore-scripts --prefer-offline
|