Initialize repo

This commit is contained in:
2023-01-14 14:20:47 +01:00
commit 48f080de7c
3 changed files with 15 additions and 0 deletions

11
backend/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]

1
backend/requirements.txt Normal file
View File

@@ -0,0 +1 @@
fastapi