Files
Python-Shannon/Dockerfile
2026-02-19 08:49:56 +00:00

12 lines
230 B
Docker

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" ]