Add dockerfile and fix readme

This commit is contained in:
2024-02-01 11:02:58 +01:00
parent e8a4b83843
commit 8810851284
3 changed files with 13 additions and 3 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r /app/requirements.txt
# Run app.py when the container launches
CMD ["python", "/app/main.py"]