ci: 更新Dockerfile
Some checks failed
CI Monitor MIflow / build-image (push) Failing after 36s

This commit is contained in:
zhaoyingbo 2024-08-09 08:03:52 +00:00
parent d82577588b
commit a9fbe4cdb4
5 changed files with 37 additions and 22 deletions

View File

@ -24,5 +24,7 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: docker/Dockerfile
push: true
tags: micr.cloud.mioffice.cn/egg/gitlab_monitor:${{ github.sha }}

View File

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

View File

@ -1,9 +0,0 @@
version: "3"
services:
gitlab_monitor:
image: git.yingbo.im:333/zhaoyingbo/gitlab_monitor:sha
container_name: gitlab_monitor
restart: always
ports:
- 3001:3000

15
docker/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM oven/bun:1-alpine
RUN /bin/sh -c apk update && apk add tzdata && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone
WORKDIR /app
COPY package*.json ./
COPY bun.lockb ./
RUN bun install
COPY . .
CMD ["bun", "start"]

20
service/gitlab/mr.ts Normal file
View File

@ -0,0 +1,20 @@
import netTool from "../netTool"
import { GITLAB_AUTH_HEADER, GITLAB_BASE_URL, gitlabReqWarp } from "./tools"
const getDiffs = async (project_id: number, merge_request_iid: number) => {
const URL = `${GITLAB_BASE_URL}/projects/${project_id}/merge_requests/${merge_request_iid}/changes`
const res = await gitlabReqWarp(
() => netTool.get(URL, {}, GITLAB_AUTH_HEADER),
null
)
if (res === null) return null
return res
}
const mr = {
getDiffs,
}
export default mr
getDiffs(139032, 484).then(console.log)