From eb1b7667d1ce2ac21d718247ff3ded4b5cfbe60d Mon Sep 17 00:00:00 2001 From: LAGNEAU Romain Date: Thu, 4 Jul 2024 17:07:07 +0200 Subject: [PATCH] [FIX] Fixed a typo in the Dockerfile --- ci/docker/ubuntu-dep-src/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/docker/ubuntu-dep-src/Dockerfile b/ci/docker/ubuntu-dep-src/Dockerfile index 2d7c25722e..63ab7d1914 100644 --- a/ci/docker/ubuntu-dep-src/Dockerfile +++ b/ci/docker/ubuntu-dep-src/Dockerfile @@ -76,6 +76,7 @@ USER ${USERNAME} # When running a container start in the home folder WORKDIR /home/$USERNAME +ENV HOME=/home/$USERNAME # Some apps don't show controls without this ENV QT_X11_NO_MITSHM=1 @@ -93,7 +94,7 @@ RUN cd ${HOME}/visp-ws/3rdparty \ && make -j$(nproc) \ && make -j$(nproc) install PREFIX=$(pwd)/install -ENV OpenBLAS_HOME=/3rdparty/OpenBLAS/install +ENV OpenBLAS_HOME=${HOME}/visp-ws/3rdparty/OpenBLAS/install # Install VTK from source ENV GIT_CLONE_PROTECTION_ACTIVE=false