9 lines
No EOL
242 B
Docker
9 lines
No EOL
242 B
Docker
# Use the official NGINX image as the base image
|
|
FROM nginx
|
|
|
|
# Copy your custom HTML and logo files to the NGINX web root
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY logo.png /usr/share/nginx/html/
|
|
|
|
# Expose port 80 for HTTP traffic
|
|
EXPOSE 80 |