DAS_2024_1/polevoy_sergey_lab_2/second/Dockerfile

8 lines
293 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
FROM python:3.12-alpine
# Указание рабочей папки
WORKDIR /app
# Копирование исходного файла в рабочую папку
COPY second.py .
# Команда запуска
CMD ["python", "second.py"]