加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 314 Bytes
一键复制 编辑 原始数据 按行查看 历史
hezhuozhuo 提交于 2024-06-05 17:29 . Fix: add dockerfile
FROM nginx:latest
# RUN rm -rf /etc/nginx/nginx.conf
# RUN rm -rf /usr/share/nginx/html/*
# RUN mkdir -p /usr/share/nginx/html/discount-web
COPY dist /usr/share/nginx/html/
# COPY visual-editor/dist /usr/share/nginx/visual-editor
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 8080
ENTRYPOINT nginx -g "daemon off;"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化