mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-02-18 02:45:42 +00:00
11 lines
241 B
Docker
11 lines
241 B
Docker
FROM hub.c.163.com/library/nginx
|
|
|
|
MAINTAINER jo "tionsin@live.com"
|
|
|
|
RUN rm -rf /etc/nginx/conf.d/default.conf
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY ./html/ /usr/share/nginx/html/
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|