1 Star 0 Fork 0

Michael Yang/aieditor-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 348 Bytes
一键复制 编辑 原始数据 按行查看 历史
Michael Yang 提交于 2024-09-05 16:51 . init
# 使用官方的 Nginx 镜像作为基础镜像
FROM nginx:latest
# 将自定义的 Nginx 配置文件复制到容器内
COPY ./nginx.conf /etc/nginx/nginx.conf
# 将本地的静态文件复制到 Nginx 静态文件目录
COPY ./dist/ /usr/share/nginx/html/
# 暴露 Nginx 端口
EXPOSE 7860
# 启动 Nginx
CMD ["nginx", "-g", "daemon off;"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fuhai/aieditor-demo.git
git@gitee.com:fuhai/aieditor-demo.git
fuhai
aieditor-demo
aieditor-demo
master

搜索帮助