11 lines
251 B
Docker
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;"]
|