File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -24,17 +24,18 @@ jobs:
24
24
inlineScript : |
25
25
set -euo pipefail
26
26
27
- # Create a new buildx builder instance with the specified platform and buildkit image
28
27
# Image is defined in azdo library variable group
28
+ echo "Creating builder using cached buildkit mirror..."
29
29
docker buildx create --name fhir-multi-platform --use \
30
30
--driver docker-container --driver-opt image=$(mobyBuildkitMirror):$(mobyBuildkitVersion)
31
- docker buildx inspect fhir-multi-platform --bootstrap
32
-
31
+
33
32
echo "Setting up QEMU for cross-platform builds..."
34
33
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
34
+
35
+ echo "Inspecting builder to confirm setup..."
36
+ docker buildx inspect fhir-multi-platform --bootstrap
35
37
36
38
echo "Building FHIR ${{ parameters.version }} for platform ${{ parameters.buildPlatform }}..."
37
-
38
39
TAG="$(azureContainerRegistry)/${{ parameters.version }}_fhir-server:${{ parameters.tag }}"
39
40
az acr login --name $(azureContainerRegistryName)
40
41
docker buildx build --tag ${TAG,,} \
You can’t perform that action at this time.
0 commit comments