加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
Try. 提交于 2024-11-28 17:11 . dockerfile
FROM 192.168.21.234:81/tools/node:20.9.0 as build
WORKDIR /app
ENV TZ Asia/Shanghai
ENV LANG C.UTF-8
COPY package*.json ./
RUN npm config set strict-ssl false
RUN npm config set registry https://registry.npmmirror.com/
RUN npm install -g vuepress
RUN npm install
COPY . .
# RUN npm run build
# FROM 192.168.21.234:81/tools/nginx:1.22
# COPY --from=build /app/docs/.vuepress/dist/ /usr/share/nginx/html/
# RUN rm /etc/nginx/nginx.conf
# COPY ./nginx.conf /etc/nginx/nginx.conf
# RUN rm /etc/nginx/conf.d/default.conf
# COPY default.conf /etc/nginx/conf.d/
EXPOSE 8080
CMD ["vuepress", "dev"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化