💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### 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 ```