feat: dockerfiles

This commit is contained in:
Smigz 2024-08-08 15:33:46 -04:00
parent 8398636f01
commit 7d149f5130
8 changed files with 44 additions and 3 deletions

View file

@ -0,0 +1,11 @@
FROM python:3.12
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./app /code/app
CMD ["fastapi", "run", "app/main.py", "--port", "80"]

Binary file not shown.