5 lines
94 B
Docker
5 lines
94 B
Docker
FROM nginx
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|