9292 # will use NVIDIA's self-hosted DockerHub pull-through cache, which should mean faster builds,
9393 # fewer network failures, and fewer rate-limiting issues
9494 buildkitd-config : /etc/buildkit/buildkitd.toml
95- driver : docker
95+ driver : docker-container
9696 endpoint : builders
9797 - name : Build cuVS Benchmarks GPU image
9898 uses : docker/build-push-action@v6
@@ -108,6 +108,8 @@ jobs:
108108 PYTHON_VER=${{ inputs.PYTHON_VER }}
109109 RAPIDS_VER=${{ inputs.RAPIDS_VER }}
110110 tags : ${{ inputs.CUVS_BENCH_TAG }}-${{ matrix.ARCH }}
111+ # ensure only OCI mediatypes are used: https://docs.docker.com/build/exporters/#oci-media-types
112+ outputs : type=registry,oci-mediatypes=true
111113 # - name: Build cuVS Benchmarks GPU with datasets image
112114 # uses: docker/build-push-action@v6
113115 # with:
@@ -122,6 +124,7 @@ jobs:
122124 # PYTHON_VER=${{ inputs.PYTHON_VER }}
123125 # RAPIDS_VER=${{ inputs.RAPIDS_VER }}
124126 # tags: ${{ inputs.CUVS_BENCH_DATASETS_TAG }}-${{ matrix.ARCH }}
127+ # outputs: type=registry,oci-mediatypes=true
125128 - name : Build cuVS Benchmarks CPU image
126129 if : inputs.BUILD_CUVS_BENCH_CPU_IMAGE
127130 uses : docker/build-push-action@v6
@@ -137,3 +140,5 @@ jobs:
137140 PYTHON_VER=${{ inputs.PYTHON_VER }}
138141 RAPIDS_VER=${{ inputs.RAPIDS_VER }}
139142 tags : ${{ inputs.CUVS_BENCH_CPU_TAG }}-${{ matrix.ARCH }}
143+ # ensure only OCI mediatypes are used: https://docs.docker.com/build/exporters/#oci-media-types
144+ outputs : type=registry,oci-mediatypes=true
0 commit comments