mirror of
https://github.com/mtan93/hass-addons.git
synced 2026-04-04 14:23:07 +01: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"] |