This commit is contained in:
2025-01-25 16:04:32 -03:00
parent 4d583cc238
commit 8add846bb9
3 changed files with 59 additions and 14 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.12.8-slim-bullseye
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
# Start the FastAPI server
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]