From b18d3d145bb9ec6441f454c225f23b1f76ad7dee Mon Sep 17 00:00:00 2001 From: Aaron Date: Tue, 19 Nov 2019 06:55:35 -0700 Subject: [PATCH] replace PYENV_ROOT everywhere --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a03b783..aaa20b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,8 +27,8 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* # Install pyenv, then install python versions -RUN git clone --depth 1 https://github.com/pyenv/pyenv.git $PYENV_HOME && \ - rm -rfv $PYENV_HOME/.git +RUN git clone --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT && \ + rm -rfv $PYENV_ROOT/.git COPY requirements.txt entrypoint.sh / ENTRYPOINT ["/entrypoint.sh"]