1 Star 0 Fork 0

godwar2010/BotSharp-UI

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 315 Bytes
一键复制 编辑 原始数据 按行查看 历史
geffzhang 提交于 2024-02-20 09:16 +08:00 . feat: add dockerfile
FROM node:lts-alpine AS build
WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
RUN npm install
COPY . ./
RUN npm run build
FROM nginx:stable-alpine
EXPOSE 5015
RUN sed -i 's/80/5015/g' /etc/nginx/conf.d/default.conf
COPY --from=build /app/build /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Aaronwar/BotSharp-UI.git
git@gitee.com:Aaronwar/BotSharp-UI.git
Aaronwar
BotSharp-UI
BotSharp-UI
main

搜索帮助