Dockerfile hinzugefügt
Deploy Standortpruefung / deploy (push) Successful in 4s Details

This commit is contained in:
gitea-enwelo-jba 2026-04-24 06:57:54 +00:00
parent 8e623bc35e
commit 8ce5cb0ba0
1 changed files with 8 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
# Wir nutzen den schlanken Nginx-Server als Basis
FROM nginx:alpine
# Wir kopieren deinen Code (HTML, CSS, JS) in das Standard-Verzeichnis von Nginx
COPY . /usr/share/nginx/html
# Wir machen Port 80 innerhalb des Containers verfügbar
EXPOSE 80