File size: 855 Bytes
21ff8a3 1e4aac4 21ff8a3 1e4aac4 21ff8a3 d16d4c9 21ff8a3 5cd35fe 21ff8a3 1e4aac4 21ff8a3 1e4aac4 21ff8a3 1e4aac4 21ff8a3 1e4aac4 21ff8a3 |
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 45 |
# 使用 Golang 镜像作为构建阶段
FROM golang AS builder
# 设置环境变量
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux
# 设置工作目录
WORKDIR /build
# 安装 git
RUN apk add --no-cache git
# 克隆项目仓库
RUN git clone https://github.com/deanxv/genspark2api.git .
# 复制 go.mod 和 go.sum 文件,先下载依赖
COPY go.mod go.sum ./
#ENV GOPROXY=https://goproxy.cn,direct
RUN go mod download
# 复制整个项目并构建可执行文件
COPY . .
RUN go build -o /genspark2api
# 使用 Alpine 镜像作为最终镜像
FROM alpine
# 安装基本的运行时依赖
RUN apk --no-cache add ca-certificates tzdata
# 从构建阶段复制可执行文件
COPY --from=builder /genspark2api .
# 暴露端口
EXPOSE 7055
# 工作目录
WORKDIR /app/genspark2api/data
# 设置入口命令
ENTRYPOINT ["/genspark2api"] |