initial commit

This commit is contained in:
nihonium 2024-10-31 23:05:00 +03:00
commit fc0b9a1268
Signed by: nihonium
GPG key ID: 0251623741027CFC
2 changed files with 32 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM python:3.11-slim
WORKDIR /server
COPY src/server.py .
EXPOSE 8888
CMD ["python", "server.py"]