frigate/notify/Dockerfile

12 lines
172 B
Docker
Raw Normal View History

2023-05-20 11:44:46 -04:00
FROM python:3.11
WORKDIR /code
ENTRYPOINT ["python3", "mqtt.py"]
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 .