| 1234567891011121314 |
- # Use nginx base image
- FROM nginx:alpine
- # Remove default nginx static files
- RUN rm -rf /usr/share/nginx/html/*
- # Copy our static site
- COPY index.html /usr/share/nginx/html/
- # Expose port 80
- EXPOSE 80
- # Start nginx
- CMD ["nginx", "-g", "daemon off;"]
|