frigate/notify/Dockerfile

11 lines
171 B
Docker
Raw Normal View History

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