frigate/notify/Dockerfile

12 lines
171 B
Docker
Raw Normal View History

2023-05-20 10:44:46 -05:00
FROM python:3.11
WORKDIR /code
ENTRYPOINT ["python3", "mqtt.py"]
RUN pip3 install --upgrade pip
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY src .