Skip to content

Commit

Permalink
fix: add pip to builder/Dockerfile
Browse files Browse the repository at this point in the history
To ensure early failure in the unit tests, it is necessary to
verify the installation of the Python OpenShift package. One
effective way to accomplish this is by using the pip show command.
Therefore, we need to enhance the Dockerfile to include pip.

Signed-off-by: Nestor Acuna Blanco <[email protected]>
  • Loading branch information
nestoracunablanco committed Jul 31, 2024
1 parent 73c6fa0 commit 54e5fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM quay.io/fedora/fedora:latest

# Install dependencies and tools
RUN dnf install -y jq ansible python3-gobject python3-openshift libosinfo intltool make git findutils expect golang podman
RUN dnf install -y jq ansible python3-gobject python3-openshift python3-pip libosinfo intltool make git findutils expect golang podman

# Allow writes to /etc/passwd so a user for ansible can be added by CI commands
RUN chmod a+w /etc/passwd
Expand Down

0 comments on commit 54e5fd9

Please sign in to comment.