From a9d3acb99d5f0547ff4a8e3391577ce1473b8c92 Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Tue, 11 May 2021 10:41:07 +0200 Subject: [PATCH] pyenv fixes --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8d69a97b0e..b4241fbb83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,14 +68,17 @@ RUN cd /opt/openpype \ RUN source $HOME/.bashrc \ cd /opt/openpype \ + && pyenv local ${OPENPYPE_PYTHON_VERSION} \ && ./tools/create_env.sh RUN source $HOME/.bashrc \ cd /opt/openpype \ + && pyenv local ${OPENPYPE_PYTHON_VERSION} \ && ./tools/fetch_thirdparty_libs.sh RUN source $HOME/.bashrc \ cd /opt/openpype \ + && pyenv local ${OPENPYPE_PYTHON_VERSION} \ && bash ./tools/build.sh RUN cd /opt/openpype \