File size: 297 Bytes
7047035 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Use an official Nginx runtime as the base image
FROM nginx:latest
# Copy the HTML page to the Nginx document root directory
COPY index.html /usr/share/nginx/html
# Expose the default Nginx port
EXPOSE 80
# Start the Nginx server when the container launches
CMD ["nginx", "-g", "daemon off;"]
|