This commit is contained in:
Hua
2025-04-27 10:55:38 +08:00
parent 8480656ca4
commit e5cf1c348c
3 changed files with 56 additions and 0 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
config.yaml
config.yaml.bak
.idea/
.git/

35
Dockerfile Normal file
View File

@ -0,0 +1,35 @@
FROM golang:1.22-alpine AS builder
WORKDIR /app
# 复制go.mod和go.sum文件
COPY go.mod go.sum ./
# 下载依赖
RUN go mod download
# 复制源代码
COPY . .
# 构建应用
RUN CGO_ENABLED=0 GOOS=linux go build -o /app/ai-code-review
# 使用轻量级的基础镜像
FROM alpine:latest
WORKDIR /app
# 从构建阶段复制二进制文件
COPY --from=builder /app/ai-code-review /app/
# 创建默认配置文件到临时位置
RUN echo 'port: 53321\nadmin_token: "token"\n\nauto_disable:\n enabled: true\n max_failures: 3\n reset_after: 30\n\nais: []\n\ngit: []' > /app/config.default.yaml
# 暴露端口
EXPOSE 53321
# 设置卷挂载点
VOLUME ["/app/config.yaml"]
# 运行应用,如果配置文件不存在则使用默认配置
CMD ["sh", "-c", "if [ ! -f /app/config.yaml ]; then cp /app/config.default.yaml /app/config.yaml; fi && /app/ai-code-review"]

17
docker-compose.yml Normal file
View File

@ -0,0 +1,17 @@
version: '3.8'
services:
ai-code-review:
# image: ai-code-review:lasted
build:
context: .
dockerfile: Dockerfile
container_name: ai-code-review
ports:
- "53321:53321"
# volumes:
# # 如果需要使用自定义配置文件,取消下面的注释并修改路径
# - ./config.yaml:/app/config.yaml
restart: unless-stopped
environment:
- TZ=Asia/Shanghai