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

12
Dockerfile.save Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /usr/src/app
COPY requirements.txt ./
echo "http://nova.clouds.archive.ubuntu.com/ubuntu jammy/main amd64 Packages" >
RUN apt install tk/jammy
RUN pip install --force-reinstall -r requirements.txt
COPY . .
CMD [ "python", "./Shannon.py" ]