restructured code (cleaner) and also started with a docker file

This commit is contained in:
Andreas Fruhwirt
2025-04-05 19:15:20 +02:00
parent 4dd0d91de2
commit 3943a8bc7c
4 changed files with 214 additions and 240 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.10-alpine
WORKDIR /code
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8642
CMD ["python", "application.py"]