14 Star 86 Fork 48

suzhou-youjie / OA办公系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 425 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node:18-alpine as build-stage
WORKDIR /app
RUN corepack enable
RUN corepack prepare pnpm@8.6.10 --activate
RUN npm config set registry https://registry.npmmirror.com
COPY .npmrc package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
C#
1
https://gitee.com/suzhou-youjie/oa.git
git@gitee.com:suzhou-youjie/oa.git
suzhou-youjie
oa
OA办公系统
main

搜索帮助

53164aa7 5694891 3bd8fe86 5694891