399 Star 3.2K Fork 402

Gitee Community/开源指北

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 376 Bytes
一键复制 编辑 原始数据 按行查看 历史
诺墨 提交于 2024-07-27 06:51 +08:00 . feat: add docker support
# 基础镜像
FROM node:20.11.1-alpine as build-stage
ENV NPM_CONFIG_REGISTRY=https://registry.npmmirror.com
WORKDIR /app
RUN apk add git
COPY . .
RUN npm config set registry https://registry.npmmirror.com
RUN npm install
RUN npm run docs:build
FROM nginx:alpine
COPY --from=build-stage /app/.vitepress/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
其他
1
https://gitee.com/gitee-community/opensource-guide.git
git@gitee.com:gitee-community/opensource-guide.git
gitee-community
opensource-guide
开源指北
master

搜索帮助