frigate/notify/Dockerfile

12 lines
190 B
Docker
Raw Normal View History

2023-05-20 10:44:46 -05:00
FROM python:3.11
WORKDIR /code
2023-07-30 13:26:52 -05:00
ENTRYPOINT ["python3", "frigate_event_notifier.py"]
2023-05-20 10:44:46 -05:00
RUN pip3 install --upgrade pip
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 .