File size: 838 Bytes
55168c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 使用 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"]