initial commit

This commit is contained in:
2025-11-09 12:26:46 -03:00
commit b305173b9d
17 changed files with 307 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# Use the official Python image
FROM python:3.12-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code/app
CMD ["fastapi", "run", "app/main.py", "--port", "8000"]