7 lines
112 B
Docker
7 lines
112 B
Docker
FROM nginx:latest
|
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |