Update Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sthope 2024-05-27 18:32:59 +02:00
parent becd8fde90
commit 7b1984e282

View File

@ -1 +1,13 @@
FROM nginx:alpine
# 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;"]