add files
Build and Push Docker Image / build-push (push) Failing after 2m14s

This commit is contained in:
2026-04-06 15:55:47 +02:00
commit 29955208c0
3 changed files with 77 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Wir nutzen ein kleines, leichtgewichtiges Nginx-Image
FROM nginx:alpine
# Kopiere unsere HTML-Datei in den Web-Ordner von Nginx
COPY index.html /usr/share/nginx/html/index.html
# Port 80 freigeben
EXPOSE 80
# Nginx starten
CMD ["nginx", "-g", "daemon off;"]