frigate/webcontrol/Dockerfile

13 lines
247 B
Docker
Raw 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"]
CMD ["--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 .