Files
liederwahl/Dockerfile
2024-07-02 13:51:19 +02:00

9 lines
231 B
Docker

FROM python:3.11
WORKDIR /code
COPY ./requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt
CMD ["fastapi", "run", "app/main.py", "--proxy-headers", "--port", "80", "--reload"]