This commit is contained in:
Michael
2021-11-10 16:49:05 +00:00
commit 7cb3d49962
69 changed files with 5622 additions and 0 deletions
@@ -0,0 +1,15 @@
FROM python:3.7
WORKDIR /app
RUN apt-get -y update && apt-get install -y \
ffmpeg \
netcat-openbsd
COPY . .
RUN pip install .
COPY ./docker/entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
CMD ["unifi-cam-proxy"]