# 使用 Golang 镜像作为构建阶段 FROM golang AS builder # 设置环境变量 ENV GO111MODULE=on \ CGO_ENABLED=0 \ GOOS=linux \ TZ=Asia/Shanghai \ ROUTE_PREFIX=hf \ PORT=7860 # 设置工作目录 WORKDIR /build # 安装 git RUN apt-get update && apt-get install -y git # 使用 git clone 获取源码 RUN git clone https://github.com/renqabs/bd2a.git . # 下载依赖 # ENV GOPROXY=https://goproxy.cn,direct RUN go mod download # 构建可执行文件 RUN go build -o /bdlebox2a # 使用 Alpine 镜像作为最终镜像 FROM alpine # 安装基本的运行时依赖 RUN apk --no-cache add ca-certificates tzdata # 从构建阶段复制可执行文件 COPY --from=builder /bdlebox2a . # 暴露端口 EXPOSE 7860 # 工作目录 WORKDIR /app/bdlebox2a/data # 设置入口命令 ENTRYPOINT ["/bdlebox2a"]