Sthope 7b1984e282
All checks were successful
continuous-integration/drone/push Build is passing
Update Dockerfile
2024-05-27 18:32:59 +02:00

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;"]