From 6d595155d56992d3243ba16f99f556cb6211984c Mon Sep 17 00:00:00 2001 From: Riley Karson Date: Wed, 29 Mar 2023 15:23:04 -0700 Subject: [PATCH] Remove python installation from downstream-builder (#7561) --- .ci/containers/downstream-builder/Dockerfile | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.ci/containers/downstream-builder/Dockerfile b/.ci/containers/downstream-builder/Dockerfile index 9252fa945f18..f6bf293abe98 100644 --- a/.ci/containers/downstream-builder/Dockerfile +++ b/.ci/containers/downstream-builder/Dockerfile @@ -38,19 +38,8 @@ RUN apt-get install -y git build-essential libbz2-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev tk-dev libpng-dev libfreetype6-dev \ make build-essential libssl-dev zlib1g-dev libbz2-dev \ libreadline-dev libsqlite3-dev curl llvm libncurses5-dev libncursesw5-dev \ - xz-utils tk-dev libffi-dev liblzma-dev python-openssl jq - -RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash -ENV PATH="/root/.pyenv/bin:${PATH}" -RUN eval "$(pyenv init -)" -RUN eval "$(pyenv virtualenv-init -)" -RUN pyenv install 3.6.8 -RUN pyenv install 2.7.13 -RUN pyenv rehash -ENV PATH="/root/.pyenv/shims:${PATH}" -RUN pyenv global 2.7.13 3.6.8 -RUN pip install beautifulsoup4 mistune -RUN pip3 install black + xz-utils tk-dev libffi-dev liblzma-dev jq + ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8