refactor: changed structure for containerization

This commit is contained in:
2025-05-03 17:24:05 +02:00
parent 770d3cd25b
commit 6be8ece8d4
28 changed files with 141 additions and 1 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.13.3-alpine
WORKDIR /app
COPY . .
CMD ["python3.13", "src/server.py"]