5 lines
128 B
Docker
5 lines
128 B
Docker
FROM nginx:mainline
|
|
COPY reverse-proxy/default.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|