init
Some checks failed
Build and Push Docker Image (Simple) / build (push) Failing after 15s

This commit is contained in:
Grzegorz Matoga
2025-07-24 18:12:48 +02:00
parent 295a25646d
commit 07596d15e1
3 changed files with 31 additions and 0 deletions

5
Dockerfile Normal file
View File

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