From d3607704082dd486f7db55d43704b8a1ad5e194d Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Sun, 3 Jul 2022 14:46:30 +0530 Subject: [PATCH] fix: typo in environment variable --- images/bench/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/bench/Dockerfile b/images/bench/Dockerfile index 55a7f67d..5c63a72d 100644 --- a/images/bench/Dockerfile +++ b/images/bench/Dockerfile @@ -87,7 +87,7 @@ ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH # From https://github.com/pyenv/pyenv#basic-github-checkout RUN git clone --depth 1 https://github.com/pyenv/pyenv.git .pyenv \ && pyenv install $PYTHON_VERSION_V12 \ - && pyenv install $PYTHON_VERSION_v13 \ + && pyenv install $PYTHON_VERSION_V13 \ && pyenv install $PYTHON_VERSION \ && pyenv global $PYTHON_VERSION $PYTHON_VERSION_V12 $PYTHON_VERSION_v13 \ && sed -Ei -e '/^([^#]|$)/ {a export PYENV_ROOT="/home/frappe/.pyenv" a export PATH="$PYENV_ROOT/bin:$PATH" a ' -e ':a' -e '$!{n;ba};}' ~/.profile \