3 回答
TA贡献1780条经验 获得超3个赞
潜在问题1
如果更改alpine
为debian
适合您,则意味着这是交叉编译的问题。
该golang
映像基于 debian,并使用 glibc,alpine
映像使用 musl libc。有时,它们不兼容,并会出现最糟糕的错误消息。
所以我怀疑这不是 Cloud Run 问题,而是之前的问题。
潜在问题2
类似的事情曾经发生在我身上,结果证明我正在构建的包不是 package main
。因此,我没有生成可执行二进制文件,而是生成了一个目标文件 (.o),当然,无论我如何努力“chmod +x”,它都不会启动。
验证您正在构建的 go 包路径实际上是package main
.
TA贡献1951条经验 获得超3个赞
尝试添加RUN chmod a+x
到最终版本。
COPY --from=builder /app/server /server RUN chmod a+x /server CMD ["/server"]
TA贡献1805条经验 获得超10个赞
显然,这可能是因为 alpine linux 过于精简,以至于缺少容器正常构建或运行所需的关键软件包。
对于我的情况,它丢失了git
。我git
在 ca-certificates 之后添加到 RUN 行,以确保它已安装。进行此更改后,我的 Cloud Run 实例可以正常运行。
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.19 as builder
# Create and change to the app directory.
WORKDIR /app
# Retrieve application dependencies using go modules.
# Allows container builds to reuse downloaded dependencies.
COPY go.* ./
RUN go mod download
# Copy local code to the container image.
COPY . ./
# Build the binary.
# -mod=readonly ensures immutable go.mod and go.sum in container builds.
RUN CGO_ENABLED=0 GOOS=linux go build -mod=readonly -v -o server
# Use the official Alpine image for a lean production container.
# https://hub.docker.com/_/alpine
# https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds
FROM alpine:3
RUN apk add --no-cache ca-certificates git
# Copy the binary to the production image from the builder stage.
COPY --from=builder /app/server /server
# Run the web service on container startup.
CMD ["/server"]
- 3 回答
- 0 关注
- 210 浏览
添加回答
举报