Skip to content

Commit

Permalink
fix: typo in docker image builder
Browse files Browse the repository at this point in the history
  • Loading branch information
sileht committed Oct 5, 2020
1 parent 01f8646 commit cb5ae19
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/build-docker-images.sh 100644 → 100755
Expand Up @@ -15,12 +15,13 @@ for target in $TARGETS ; do
arch=${target%%/*}
build=${target##*/}
image_url="${image_url_prefix}_${arch}"
[ "$build" != "default"] && image_url="${image_url}_build"
[ "$build" != "default" ] && image_url="${image_url}_build"

docker build \
-t $image_url:$TMP_TAG \
--build-arg DEEPDETECT_BUILD=$build \
-f docker/${arch}.Dockerfile
-f docker/${arch}.Dockerfile \
.

images_to_push="${images_to_push} $image_url:$TMP_TAG"
done
Expand Down

0 comments on commit cb5ae19

Please sign in to comment.