Add CI/CD workflow + Dockerfile
Some checks failed
Docker Build & Push / build (push) Has been cancelled

This commit is contained in:
2026-05-24 12:08:52 +02:00
parent 52067f85e5
commit 3cae98e948
2 changed files with 29 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM alpine:latest
LABEL org.opencontainers.image.source="https://git.kgessner.de/LuiiCode/test-repo"
RUN echo "Hello from Gitea CI/CD" > /message.txt
CMD ["cat", "/message.txt"]