Added docker support

This commit is contained in:
FrederikBaerentsen
2024-06-18 16:46:34 +02:00
parent 216b8fe7eb
commit 45026c37dd
5 changed files with 31 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]