# Use the official Nginx image from the Docker Hub FROM nginx:alpine # Label the image with metadata LABEL maintainer="Sthope " LABEL description="This is a super basic custom Nginx Docker image for serving websites" LABEL version="1.0" # Expose port 80 to the host EXPOSE 80 # Run Nginx in the foreground CMD ["nginx", "-g", "daemon off;"]