feat: Добавил Dockerfile, изменил структуру

This commit is contained in:
nihonium 2024-10-18 00:49:36 +03:00
parent 3bdab827ff
commit c054da67f1
Signed by: nihonium
GPG key ID: 0251623741027CFC
11 changed files with 10 additions and 1171 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3.12-slim
WORKDIR /opt/McEliece
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "python", "McEliece_console.py" ]