frigate/webcontrol/Dockerfile

13 lines
277 B
Docker
Raw Permalink Normal View History

2023-05-21 18:33:10 -05:00
FROM python:3.11
WORKDIR /code
ENTRYPOINT ["uvicorn", "webcontrol:api", "--host", "0.0.0.0", "--port", "80"]
2024-03-24 03:52:37 -05:00
CMD ["--root-path", "/webcontrol", "--log-level", "warning"]
2023-05-21 18:33:10 -05:00
RUN pip3 install --upgrade pip
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY src .