From 31152e169dad086c8b5be19473c142f90baa2961 Mon Sep 17 00:00:00 2001
From: Pierre Riteau <pierre@stackhpc.com>
Date: Thu, 20 May 2021 18:27:43 +0200
Subject: [PATCH] Fix Docker build

The default nodeset was just changed to focal [1], which in the absence
of the python-is-python3 package doesn't provide a python binary.

[1] https://review.opendev.org/c/opendev/base-jobs/+/789098

Change-Id: I2b208db2b7b34da034071a4fc0c5d49768b6dad3
---
 docker/build_image.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/build_image.sh b/docker/build_image.sh
index 2c350552..59f2325f 100755
--- a/docker/build_image.sh
+++ b/docker/build_image.sh
@@ -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" ] && \