FROM python:3
COPY my_program.py /
ENV MY_MESSAGE="Hello, Docker!"
CMD ["python", "/my_program.py"]