dynamicweb2/nginx/Dockerfile
2023-12-13 20:00:54 +05:30

11 lines
251 B
Docker

# Use the official Nginx image from the Docker Hub
FROM nginx:latest
# Copy custom configuration file to Nginx configuration directory
COPY ./nginx.conf /etc/nginx/nginx.conf
# Expose port
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]