diff options
Diffstat (limited to 'images/agent')
-rw-r--r-- | images/agent/Dockerfile | 12 | ||||
-rw-r--r-- | images/agent/README.md | 7 |
2 files changed, 0 insertions, 19 deletions
diff --git a/images/agent/Dockerfile b/images/agent/Dockerfile deleted file mode 100644 index 1d8979390..000000000 --- a/images/agent/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM golang:1.15 as build-agent -RUN git clone --depth=1 --branch=v3.25.0 https://github.com/buildkite/agent -RUN cd agent && go build -i -o /buildkite-agent . - -FROM golang:1.15 as build-agent-metrics -RUN git clone --depth=1 --branch=v5.2.0 https://github.com/buildkite/buildkite-agent-metrics -RUN cd buildkite-agent-metrics && go build -i -o /buildkite-agent-metrics . - -FROM gcr.io/distroless/base-debian10 -COPY --from=build-agent /buildkite-agent / -COPY --from=build-agent-metrics /buildkite-agent-metrics / -CMD ["/buildkite-agent"] diff --git a/images/agent/README.md b/images/agent/README.md deleted file mode 100644 index acb57bd2f..000000000 --- a/images/agent/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Build Agent - -This is the image used by the build agent. It is built and bundled via a -separate packaging mechanism in order to provide local caching and to ensure -that there is better build provenance. Note that continuous integration system -will generally deploy new agents from the primary branch, and will only deploy -as instances are recycled. Updates to this image should be made carefully. |