diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..5f59743 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt requirements.txt +RUN pip install -r requirements.txt + +COPY . . + +CMD ["python", "main.py"] diff --git a/backend/requirements.txt b/backend/requirements.txt index a9f380d..32c532a 100644 Binary files a/backend/requirements.txt and b/backend/requirements.txt differ