frigate/webcontrol/Dockerfile

12 lines
174 B
Docker
Raw Normal View History

2023-05-21 18:33:10 -05:00
FROM python:3.11
WORKDIR /code
ENTRYPOINT ["python3", "server.py"]
RUN pip3 install --upgrade pip
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY src .