2024-12-08 14:14:43 +04:00

8 lines
88 B
Docker

FROM python:3.9-slim
WORKDIR /twoapp
COPY main.py /twoapp/
CMD ["python", "main.py"]