first commit

This commit is contained in:
root
2026-02-19 08:49:56 +00:00
commit beda405953
15 changed files with 11172 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apt-get update -y && apt-get install -y tk tcl
RUN pip install --force-reinstall -r requirements.txt
COPY . .
CMD [ "python", "./Shannon.py" ]