From ca0a41c6d35fb834f9666b4bb00c190d110a37a3 Mon Sep 17 00:00:00 2001 From: Gordon Inggs Date: Fri, 1 Dec 2023 00:53:32 +0200 Subject: [PATCH] Trying a different approach - no-deps --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3c651b..320fbf6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,10 +18,7 @@ RUN export CHROMEDRIVER_VERSION=$(curl --silent https://chromedriver.storage.goo unzip chromedriver_linux64.zip -d /usr/bin && \ chmod 755 /usr/bin/chromedriver && \ rm -f chromedriver_linux64.zip - -# Pinning various packages to fix dependency issues -RUN pip3 install --no-cache --force-reinstall alembic==1.6.5 markupsafe==2.0.1 pyopenssl==22.1.0 apache-superset==1.5.3 - + RUN pip install --no-cache gevent # Install base drivers required for helm chart to work @@ -49,5 +46,8 @@ RUN pip install gevent \ RUN pip install pystan==2.19.1.1 \ && pip install prophet +# Pinning various packages to fix dependency issues +RUN pip3 install --no-cache --no-deps --force-reinstall alembic==1.6.5 markupsafe==2.0.1 pyopenssl==22.1.0 + # Switching back to using the `superset` user USER superset