# 基于centos7
FROM openresty/openresty:1.13.6.2-centos

COPY nginx.conf /usr/local/openresty/nginx/conf/

WORKDIR /home/quant_group
COPY test-ui.conf ./conf.d/
COPY index.html ./test-ui/

CMD ["/usr/local/openresty/bin/openresty", "-g", "daemon off;"]

