frigate/notify/Dockerfile

11 lines
171 B
Docker
Raw Normal View History

2023-05-20 10:44:46 -05:00
FROM python:3.11
WORKDIR /code
COPY docker_entrypoint.sh /
ENTRYPOINT ["/docker_entrypoint.sh"]
2023-05-20 10:44:46 -05:00
COPY requirements.txt .
2023-05-21 18:33:10 -05:00
RUN pip3 install -r requirements.txt
2023-05-20 10:44:46 -05:00
COPY src .