We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1398e2 commit 10a5f35Copy full SHA for 10a5f35
2 files changed
ML-Frameworks/tensorflow-aarch64/build.sh
@@ -72,8 +72,4 @@ fi
72
tf_wheel_name=$(grep -o "tensorflow-.*.whl" $build_log | head -n -1 | tail -n 1)
73
echo $tf_wheel_name
74
75
-docker build -t toolsolutions-tensorflow:latest \
76
- --build-arg TENSORFLOW_WHEEL=results/$tf_wheel_name \
77
- --build-arg DOCKER_IMAGE_MIRROR \
78
- --build-arg USERNAME=ubuntu \
79
- .
+./dockerize.sh "results/$tf_wheel_name" --build-only
ML-Frameworks/tensorflow-aarch64/dockerize.sh
@@ -21,7 +21,7 @@ set -eux -o pipefail
21
22
help_str="dockerize.sh takes a TensorFlow wheel as argument. It \
23
installs the wheel inside a Docker container with examples and requirements."
24
-if [ "$#" -ne 1 ]; then
+if [ "$#" -lt 1 ]; then
25
echo $help_str
26
exit 1
27
fi
0 commit comments