Files
mbuz-www/Dockerfile
2025-08-26 23:11:36 +02:00

8 lines
188 B
Docker

# Use the official Nginx image from Docker Hub
FROM nginx:alpine
# Copy index.html to the default Nginx public folder
COPY index.html /usr/share/nginx/html/
# Listen on port 80
EXPOSE 80