commit 48f080de7c1d9cdc892e9c247cd6904f9fac3e57 Author: Victor Mylle Date: Sat Jan 14 14:20:47 2023 +0100 Initialize repo diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c564ce --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +node_modules/ +__pycache__/ \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..8669bd3 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.11 + +WORKDIR /app + +COPY requirements.txt . + +RUN pip install -r requirements.txt + +COPY . . + +CMD ["python", "app.py"] \ No newline at end of file diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000..6b0b939 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1 @@ +fastapi