Files
hass-addons/unifi-cam-proxy-main/unifi-cam-proxy/Dockerfile
Michael 7cb3d49962 123
2021-11-10 16:49:05 +00:00

15 lines
218 B
Docker

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"]