Skip to content

Commit

Permalink
Merge pull request #263 from uncharted-lara/multiplatform-build
Browse files Browse the repository at this point in the history
use buildx instead
  • Loading branch information
cdbethune authored Aug 15, 2024
2 parents e99f80a + d04323e commit 7880a35
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pipelines/geo_referencing/deploy/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ else
fi

# run the build
docker build -t uncharted/lara-georef:latest .
docker buildx build --platform linux/amd64,linux/arm64 -t uncharted/lara-georef:latest .

# cleanup the temp files
rm -rf pipelines
Expand Down
2 changes: 1 addition & 1 deletion pipelines/metadata_extraction/deploy/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ else
fi

# run the build
docker build -t uncharted/lara-metadata-extract:latest .
docker buildx build --platform linux/amd64,linux/arm64 -t uncharted/lara-metadata-extract:latest . --push

# cleanup the temp files
rm -rf pipelines
Expand Down
2 changes: 1 addition & 1 deletion pipelines/point_extraction/deploy/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fi


# run the build
docker build -t uncharted/lara-point-extract:latest .
docker buildx build --platform linux/amd64,linux/arm64 -t uncharted/lara-point-extract:latest . --push

# cleanup the temp files
rm -rf pipelines
Expand Down
2 changes: 1 addition & 1 deletion pipelines/segmentation/deploy/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ else
fi

# run the build
docker build -t uncharted/lara-segmentation:latest .
docker buildx build --platform linux/amd64,linux/arm64 -t uncharted/lara-segmentation:latest . --push

# cleanup the temp files
rm -rf pipelines
Expand Down
2 changes: 1 addition & 1 deletion pipelines/text_extraction/deploy/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cp -r ../../../util .
cp -r ../../../tasks .

# run the build
docker build -t uncharted/lara-text-extract:latest .
docker buildx build --platform linux/amd64,linux/arm64 -t uncharted/lara-text-extract:latest . --push

# cleanup the temp files
rm -rf pipelines
Expand Down

0 comments on commit 7880a35

Please sign in to comment.