massive fixes

This commit is contained in:
seppmutterman@gmail.com
2025-12-19 21:11:27 +01:00
parent 34ef658b36
commit 7d27be69f8
9 changed files with 24 additions and 10 deletions

11
dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./src/main.py" ]