如何在 Docker 中安装私有依赖项

我正在尝试在 docker 容器中获取一个 Go 应用程序。这是我的第一个更大的 Go 和 Docker 项目。只要我在本地机器上运行 go 程序就可以正常运行,现在我想在 docker 容器内的 EC2 上运行它。我的 docker 文件如下所示:


FROM golang:latest 

RUN mkdir /tir

ADD . /tir 

WORKDIR /tir

RUN go build -o main . 

CMD ["/app/main"]

但是对于每个私有依赖项,我都会收到以下错误:


main.go:17:2: cannot find package "github.com/ser/model" in any of:

    /usr/local/go/src/github.com/ser/model (from $GOROOT)

    /go/src/github.com/ser/model (from $GOPATH)

当我RUN go get ./..在之前插入时RUN go build -o main .,每个包都会出现以下错误:


fatal: could not read Username for 'https://github.com': terminal prompts disabled

包 github.com/ser/endpoints:退出状态 128


我尝试了几种解决方案,但都没有用。我总是以上述错误告终。由于这是我的第一个 docker + golang 项目,是否有任何准备好将 dockerfiles 用于具有公共和私有依赖项的 golang 应用程序?


更新:我卸载了 go,并一个一个地复制了每个文件,并在每个文件之后使用了 dep -ensure。现在可以用了,谢谢 :D


白衣非少年
浏览 112回答 1
1回答

小唯快跑啊

您的依赖项可能存储在中GOPATH/src/<import-path>,您可以使用go get工具管理它们。考虑供应商 和工具,如dep或模块因此,您的依赖项将包含在源代码管理中,并且项目将更加可移植。您还可以改进创建图像的方式Docker。当前的实现使用一个包含整个GO工具链的容器。代码被复制到该容器内部,容器编译并托管代码。只有稍后才需要生产。更好的选择是使用 2 个容器:Go 编译工具仅托管二进制文件的轻量级容器# Debian image with the latest version of Go installed# and a workspace (GOPATH) configured at /go.FROM golang:1.11 as builderWORKDIR /go/src/github.com/space/project/# Copy the local package files to the container's workspace.ADD . /go/src/github.com/space/project/# Build the service inside the container.RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .FROM centurylink/ca-certsEXPOSE 8080# Copy appCOPY --from=builder /go/src/github.com/space/project/app   /ENTRYPOINT ["/app"]
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go