zuul extra wip
This commit is contained in:
13
Dockerfile-nginx
Normal file
13
Dockerfile-nginx
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM nginx:alpine
|
||||
|
||||
# Kopiere die Nginx-Konfiguration
|
||||
COPY nginx/nginx.conf /etc/nginx/nginx.conf
|
||||
|
||||
# Kopiere die HTML-Datei, die xterm.js verwendet
|
||||
COPY html/index.html /usr/share/nginx/html/index.html
|
||||
|
||||
# Setze die richtigen Berechtigungen für das HTML-Verzeichnis und die Datei
|
||||
RUN chmod -R 755 /usr/share/nginx/html && chmod 644 /usr/share/nginx/html/index.html
|
||||
|
||||
# Exponiere Port 80 für den Nginx-Server
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user