12 lines
230 B
Docker
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" ]
|