Concourse 仅将文件添加到 docker 图像一次

Concourse add file to docker image just once

我正在为我们的构建系统使用 concourse。

Concourse 缓存 docker 个图像,这样我们就不需要在后续运行中每次都执行下载过程。

我想将一个二进制文件添加到我将从互联网上提取的 docker 图像,但我只想在第一次提取和创建 docker 图像时这样做大厅.

有什么办法可以做到这一点吗?

您应该检查一下 docker-image-resource. You can define a Dockerfile with all of the dependencies that you want, and then push that as a resource that can be used in later builds. We wrote a tutorial 这可能会使事情变得更清楚一些。