Files
liederwahl/Dockerfile
T

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"]