8 lines
134 B
Docker
Raw Normal View History

2024-10-14 16:27:36 +04:00
#описание в Dockerfile generateFiles
FROM python:3.9-slim
WORKDIR /first
COPY first.py /first/
CMD ["python", "first.py"]