From 9da6953c1d9f9de0c60629c0c78c6bc9dfbeae53 Mon Sep 17 00:00:00 2001 From: Earle Lowe Date: Wed, 8 Jan 2025 09:40:25 -0800 Subject: [PATCH] Add in CONFIGURE_OPTS --- ubuntu-20.04/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 && \