mirror of
https://github.com/mtan93/hass-addons.git
synced 2026-03-08 05:31:54 +00:00
15 lines
218 B
Docker
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"] |