Files
Gitea-docker-runner-test/Dockerfile
Grzegorz Matoga f9c4384c71
All checks were successful
Build and Push Docker Image / build (push) Successful in 19s
docker image
2025-07-24 18:26:54 +02:00

5 lines
103 B
Docker

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