合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
#### Dockerfile ``` FROM ubuntu:xenial MAINTAINER SN COPY sources.list /etc/apt/ RUN apt-get update \ && apt-get install -y nginx COPY default /etc/nginx/sites-enabled/ COPY index.html /usr/share/nginx/html/ CMD ["nginx", "-g", "daemon off;"] ``` ``` //配置路径 /etc/nginx/sites-enabled/default //项目路径 /usr/share/nginx/html ```