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