File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
build/release/bin/30_release Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,17 @@ docker login -u "${DOCKERHUB_USERNAME}" -p "${DOCKERHUB_TOKEN}"
1414export WORKSPACE=$( pwd)
1515bash ${WORKSPACE} /fhir-install/src/main/docker/ibm-fhir-schematool/build.sh
1616
17- mvn dockerfile:build -f fhir-install
17+ # create and remove a 1 GB file to make sure we have the room needed later
18+ df -h
19+ dd if=/dev/urandom oflag=direct of=balloon.dat bs=1024k count=1000
20+ rm -f balloon.dat
21+ sudo apt clean
22+ docker system prune -f
23+ df -h
24+
25+ mvn -B dockerfile:build -f fhir-install --no-transfer-progress -Dmaven.wagon.http.retryHandler.count=3
1826mvn dockerfile:tag@tag-version -f fhir-install
1927mvn dockerfile:push@push-version -f fhir-install
2028mvn dockerfile:push@push-latest -f fhir-install
2129
22- # EOF
30+ # EOF
You can’t perform that action at this time.
0 commit comments