DAS_2024_1/fadeeva_nastya_lab_2/generator/Dockerfile
2024-12-13 00:31:02 +04:00

13 lines
803 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Указываем базовый образ для Docker
#slim означает, что это более компактный, содержащий только основные компоненты Python, что уменьшает размер образа
FROM python:3.9-slim
# Устанавливаем рабочую директорию внутри контейнера Docker в /worker.
# Все последующие команды в Dockerfile будут выполняться в этой директории.
WORKDIR /worker
# Перемещаем файл в контейнер
COPY generate_files.py /worker/
# Указываем команду, которая будет выполняться при запуске контейнера
CMD ["python", "generate_files.py"]