From 65e976bbc257da91bd6310f3284af42905d3f053 Mon Sep 17 00:00:00 2001 From: FengShun Date: Mon, 27 Dec 2021 13:17:44 +0800 Subject: [PATCH] docker: update px4-dev-simulation-bionic container versions to 2021-12-11 The current docker image will cause "make tests" to fail: "kconfiglib is not installed or not in PATH" --- Tools/docker_run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/docker_run.sh b/Tools/docker_run.sh index d0a1d94562..3ac640428e 100755 --- a/Tools/docker_run.sh +++ b/Tools/docker_run.sh @@ -19,7 +19,7 @@ if [ -z ${PX4_DOCKER_REPO+x} ]; then PX4_DOCKER_REPO="px4io/px4-dev-clang:2021-02-04" elif [[ $@ =~ .*tests* ]]; then # run all tests with simulation - PX4_DOCKER_REPO="px4io/px4-dev-simulation-bionic:2021-02-04" + PX4_DOCKER_REPO="px4io/px4-dev-simulation-bionic:2021-12-11" fi else echo "PX4_DOCKER_REPO is set to '$PX4_DOCKER_REPO'";