diff --git a/ubuntu-20.04/Dockerfile b/ubuntu-20.04/Dockerfile index 73d8ac6..628ead4 100644 --- a/ubuntu-20.04/Dockerfile +++ b/ubuntu-20.04/Dockerfile @@ -73,7 +73,8 @@ RUN git clone https://github.com/pyenv/pyenv.git ~/.pyenv && \ export LDFLAGS="-L/usr/local/openssl/lib" && \ export CPPFLAGS="-I/usr/local/openssl/include" && \ export PKG_CONFIG_PATH="/usr/local/openssl/lib/pkgconfig" && \ - pyenv install 3.11 --with-openssl=/usr/local/openssl && \ + export CONFIGURE_OPTS="--with-openssl=/usr/local/openssl" && \ + pyenv install 3.11 --verbose && \ pyenv global 3.11 && \ pip install --upgrade pip && \ pip install --no-cache-dir py3createtorrent && \