File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,19 @@ function build_transform_jsonata_image() {
1616
1717 download_pack_cli || return $?
1818
19- cd " ${TRANSFORM_JSONATA_DIR} " && \
20- pack build " ${TRANSFORM_JSONATA_IMAGE_WITH_TAG} -arm64" \
21- --builder docker.io/heroku/builder:24 \
22- --platform " linux/arm64" \
23- --clear-cache && \
24- cd -
25-
26- cd " ${TRANSFORM_JSONATA_DIR} " && \
27- pack build " ${TRANSFORM_JSONATA_IMAGE_WITH_TAG} -amd64" \
28- --builder docker.io/heroku/builder:24 \
29- --platform " linux/amd64" \
30- --clear-cache && \
31- cd -
19+ docker builx build \
20+ -t " ${TRANSFORM_JSONATA_IMAGE_WITH_TAG} -arm64" \
21+ -f " ${REPO_ROOT_DIR} /transform-jsonata/Dockerfile " \
22+ --platform " linux/arm64" \
23+ " ${REPO_ROOT_DIR} /transform-jsonata " \
24+ || return $?
25+
26+ docker builx build \
27+ -t " ${TRANSFORM_JSONATA_IMAGE_WITH_TAG} -amd64" \
28+ -f " ${REPO_ROOT_DIR} /transform-jsonata/Dockerfile " \
29+ --platform " linux/amd64" \
30+ " ${REPO_ROOT_DIR} /transform-jsonata " \
31+ || return $?
3232}
3333
3434function push_transform_jsonata_image() {
You can’t perform that action at this time.
0 commit comments