This is an automated email from the ASF dual-hosted git repository. zrhoffman pushed a commit to branch asf-arm-runner in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
commit 8676f7bf974ab66267918540909df3eeff131e82 Author: Zach Hoffman <[email protected]> AuthorDate: Thu Apr 4 19:29:06 2024 -0600 Explicitly enable Docker BuildKit Because ARM runners run on Ubuntu 20, rather than Ubuntu 22, we should not make assumptions about what Docker or Docker COmpose version we will get. --- .github/workflows/container-trafficserver-alpine.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/container-trafficserver-alpine.yml b/.github/workflows/container-trafficserver-alpine.yml index d59afc24d3..059113433e 100644 --- a/.github/workflows/container-trafficserver-alpine.yml +++ b/.github/workflows/container-trafficserver-alpine.yml @@ -18,6 +18,8 @@ name: Container ghcr.io/${{ github.repository }}/ci/trafficserver-alpine env: + DOCKER_BUILDKIT: '1' + COMPOSE_DOCKER_CLI_BUILD: '1' CONTAINER: ghcr.io/${{ github.repository }}/ci/trafficserver-alpine on:
