egg_server/Dockerfile
zhaoyingbo b992ee0b21
Some checks failed
Egg Server MIflow / build-image (push) Failing after 5m7s
feat(group-agent): 新增支持群组问答
2024-09-25 09:14:10 +00:00

18 lines
219 B
Docker

FROM micr.cloud.mioffice.cn/zhaoyingbo/bun:alpine-cn
WORKDIR /app
# COPY package*.json ./
# COPY bun.lockb ./
# COPY .npmrc ./
# RUN bun install
COPY . .
EXPOSE 3000
CMD ["bun", "run", "start"]