diff --git a/Dockerfile b/Dockerfile index 52d831a..8aae39c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,13 @@ -FROM nginx:alpine \ No newline at end of file +# 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;"]