This repository has been archived on 2024-05-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blinkpy/Dockerfile
T
2019-09-14 02:01:44 -06:00

8 lines
112 B
Docker

FROM python:slim
RUN pip3 install blinkpy
COPY entrypoint.py .
ENTRYPOINT ["python3", "entrypoint.py"]
CMD []