DAS_2024_1/rogashova_ekaterina_lab_2/worker-2/Dockerfile
2024-10-20 21:59:10 +04:00

11 lines
338 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.9-slim
# Устанавливаем рабочую директорию
WORKDIR /app
# Копируем файл с кодом программы в контейнер
COPY findnumber.py .
# Запускаем приложение
CMD ["python", "findnumber.py"]