Skip to content

Commit cb5ae19

Browse files
committed
fix: typo in docker image builder
1 parent 01f8646 commit cb5ae19

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/build-docker-images.sh

100644100755
+3-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ for target in $TARGETS ; do
1515
arch=${target%%/*}
1616
build=${target##*/}
1717
image_url="${image_url_prefix}_${arch}"
18-
[ "$build" != "default"] && image_url="${image_url}_build"
18+
[ "$build" != "default" ] && image_url="${image_url}_build"
1919

2020
docker build \
2121
-t $image_url:$TMP_TAG \
2222
--build-arg DEEPDETECT_BUILD=$build \
23-
-f docker/${arch}.Dockerfile
23+
-f docker/${arch}.Dockerfile \
24+
.
2425

2526
images_to_push="${images_to_push} $image_url:$TMP_TAG"
2627
done

0 commit comments

Comments
 (0)