ci: update hello-world app files

This commit is contained in:
Ansible
2026-09-22 19:43:25 +02:00
commit c91103f895
6 changed files with 247 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
ENTRYPOINT ["nginx", "-g", "daemon off;"]