removing old node relay

This commit is contained in:
Blake Blackshear
2021-05-30 10:31:25 -05:00
parent 4596ada801
commit 700f25abc3
7 changed files with 6 additions and 104 deletions

View File

@@ -6,7 +6,6 @@ FROM blakeblackshear/frigate-wheels:${WHEELS_VERSION}-${ARCH} as wheels
FROM blakeblackshear/frigate-ffmpeg:${FFMPEG_VERSION}-${ARCH} as ffmpeg
FROM blakeblackshear/frigate-nginx:${NGINX_VERSION} as nginx
FROM frigate-web as web
FROM frigate-jsmpeg as jsmpeg
FROM ubuntu:20.04
LABEL maintainer "blakeb@blakeshome.com"
@@ -41,7 +40,8 @@ RUN pip3 install \
voluptuous\
Flask-Sockets \
gevent \
gevent-websocket
gevent-websocket \
ws4py
COPY --from=nginx /usr/local/nginx/ /usr/local/nginx/
@@ -56,9 +56,6 @@ ADD migrations migrations/
COPY --from=web /opt/frigate/build web/
COPY --from=jsmpeg /opt/build jsmpeg/
COPY --from=jsmpeg /usr/local/bin/node /usr/local/bin/node
COPY docker/rootfs/ /
EXPOSE 5000

View File

@@ -1,10 +0,0 @@
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