DAS_2024_1/mochalov_danila_lab_2/app_1/Dockerfile

8 lines
257 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.

# Образ с Python 3.12
FROM python:3.12
# Указываем рабочую директорию
WORKDIR /app
# Копируем в нее файл скрипта
COPY app_1.py .
# Команда запуска скрипта
CMD ["python", "app_1.py"]