11 lines
292 B
Docker
11 lines
292 B
Docker
# 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.
|