Files
Gitea-docker-runner-test/Dockerfile
Grzegorz Matoga 07596d15e1
Some checks failed
Build and Push Docker Image (Simple) / build (push) Failing after 15s
init
2025-07-24 18:13:50 +02:00

5 lines
99 B
Docker

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