File size: 361 Bytes
8f788f9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.13.3
WORKDIR /app
COPY ./requirements.txt .
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
COPY ./app ./app
CMD ["fastapi", "run", "app/main.py", "--port", "3000"]
# If running behind a proxy like Nginx or Traefik add --proxy-headers
# CMD ["fastapi", "run", "app/main.py", "--port", "80", "--proxy-headers"] |