g2a / Dockerfile
ykl45's picture
Create Dockerfile
a167c68 verified
raw
history blame contribute delete
654 Bytes
# 使用 Go 1.21 官方镜像作为构建环境
FROM golang:1.21 AS builder
# 禁用 CGO
ENV CGO_ENABLED=0
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/renqabs/g2a.git /app
# 设置工作目录
WORKDIR /app
# 复制 go.mod 和 go.sum 并下载依赖
RUN go mod download
# 复制源代码并构建应用
COPY . .
RUN go build -ldflags "-s -w" -o /app/groqai2api .
# 使用 Alpine Linux 作为最终镜像
FROM alpine:latest
# 设置工作目录
WORKDIR /app
# 从构建阶段复制编译好的应用和资源
COPY --from=builder /app/groqai2api /app/groqai2api
# 暴露端口
EXPOSE 8080
CMD ["/app/groqai2api"]