You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
292 B
10 lines
292 B
# Use a lightweight Nginx image as the base |
|
FROM nginx:alpine |
|
|
|
# Copy the index.html file into the Nginx default web directory |
|
COPY index.html /usr/share/nginx/html/ |
|
|
|
# Expose port 80 (which will be mapped to 5555 on the host) |
|
EXPOSE 80 |
|
|
|
# Nginx already runs by default, so no CMD is needed.
|
|
|