FROM python:3.10-slim
COPY my_program.py /
ENV PYTHONUNBUFFERED=1
ENV MY_MESSAGE="Hello, Docker!"
CMD ["python", "/my_program.py"]