gitlab_monitor/Dockerfile
zhaoyingbo e8257ff1e9
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 23s
CI Monitor CI/CD / deploy (push) Successful in 15s
ci: 新增CICD
2024-03-06 09:26:21 +00:00

13 lines
157 B
Docker

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