10 lines
147 B
Docker
10 lines
147 B
Docker
# Use an official nginx image
|
|
FROM nginx:alpine
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start Nginx and keep it running
|
|
CMD ["nginx", "-g", "daemon off;"]
|
|
|