FROM python:3.14-rc-slim WORKDIR /app COPY hello.py . RUN chmod +x hello.py CMD ["python", "hello.py"]