Skip to content

Commit

Permalink
Move paramiko into Dockerfile.
Browse files Browse the repository at this point in the history
Before
======

Installs python paramiko package via rpm
Also installs paramiko python pip package.

After
=====

Ensure paramiko is available in the environment that builds the virtual env.
virtual env building process will detect the package is available and and not try and install the paramiko pip package.
So we end up with only 1 paramiko package installed.
This will ensure we do not install the paramiko python pip package into the venv.

History
=======

This issue was introduced in
- #509
- 3540110
  • Loading branch information
kbrock committed Nov 22, 2024
1 parent e7686bc commit 6ff5a3f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ RUN ARCH=$(uname -m) && \
python3-pip \
python3-virtualenv \
rpm-build && \
python3-paramiko && \
dnf -y update libarchive && \
dnf clean all && \
rm -rf /var/cache/dnf
Expand Down

0 comments on commit 6ff5a3f

Please sign in to comment.