egg_server/Dockerfile
zhaoyingbo e26e86223f
All checks were successful
Egg Server MIflow / build-image (push) Successful in 45s
ci(docker): 修复dockerfile错误
2024-09-26 03:44:56 +00:00

11 lines
145 B
Docker

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