14 lines
379 B
Docker
14 lines
379 B
Docker
# Use the official Nginx image from the Docker Hub
|
|
FROM nginx:alpine
|
|
|
|
# Label the image with metadata
|
|
LABEL maintainer="Sthope <hopelessautomations@gmail.com.com>"
|
|
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;"]
|