8 lines
188 B
Docker
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 |