Fix docker build script

Change-Id: Ia98a226ac5dfbe017320869478c777010a7a4bb6
This commit is contained in:
Adrian Czarnecki 2021-08-31 13:15:46 -07:00
parent 4c2858d1f1
commit 70ff0c13c1
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ set -eo pipefail # Exit the script if any statement returns error.
# $ ./build_image.sh master master refs/changes/19/595719/3
# Go to folder with Docker files.
REAL_PATH=$(python -c "import os,sys; print(os.path.realpath('$0'))")
REAL_PATH=$(python3 -c "import os,sys; print(os.path.realpath('$0'))")
cd "$(dirname "$REAL_PATH")/../docker/"
[ -z "$DOCKER_IMAGE" ] && \