Skip to content

Commit

Permalink
Add python39-requests
Browse files Browse the repository at this point in the history
  • Loading branch information
fridim committed Nov 12, 2024
1 parent 6ff4b08 commit c440849
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Containerfile.admin
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,23 @@ RUN dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x
postgresql \
python39 \
python39-pip \
python39-requests \
rsync \
tar \
unzip \
vim \
wget \
&& dnf clean all \
&& VERSION=4.1.0 \
&& curl --silent --location https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl-$VERSION-x86_64-unknown-linux-gnu.tar.gz \
| tar -xz -C /usr/local/bin --strip-components=1 --wildcards '*/hurl' '*/hurlfmt'
| tar -xz -C /usr/local/bin --strip-components=1 --wildcards '*/hurl' '*/hurlfmt' \
##############################
# Python
##############################
&& alternatives --set python /usr/bin/python3.9 \
&& alternatives --set python3 /usr/bin/python3.9 \
&& alternatives --install /usr/bin/pip pip /usr/bin/pip3.9 1 \
&& alternatives --list \
&& dnf clean all && rm -rf /tmp/*

COPY --from=docker.io/migrate/migrate /usr/local/bin/migrate /usr/local/bin/migrate
WORKDIR /sandbox/
Expand Down

0 comments on commit c440849

Please sign in to comment.