Files
tam3/api/Dockerfile

10 lines
222 B
Docker
Raw Normal View History

2025-10-03 18:02:40 -04:00
FROM docker.io/python:3-slim
2025-09-28 16:57:03 -04:00
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
2025-09-28 22:53:09 -04:00
EXPOSE 80
CMD ["fastapi", "run", "main.py", "--port", "80", "--proxy-headers"]