adding files

This commit is contained in:
2025-12-17 23:26:01 +01:00
commit 088ba67ae9
12 changed files with 72 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:latest
WORKDIR /server
COPY requirements.txt .
RUN pip3 install -r requirements.txt
CMD ["python3", "src/server.py"]