Skip to content

Commit

Permalink
Fix build error by using pip 20
Browse files Browse the repository at this point in the history
fixes #7042
  • Loading branch information
David Davis committed Jun 24, 2020
1 parent 1fd9f9b commit a2dc31a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ RUN mkdir -p /etc/nginx/pulp \
/var/run/pulpcore-worker-1 \
/var/run/pulpcore-worker-2

RUN easy_install pip
# Fedora 31 ships with pip 19.1 but we need at least 19.3 to use libsolv's compiled bindings
RUN pip install --upgrade pip

# DEBUG. REMOVE ME
RUN pip --version

RUN echo "/var/lib/pgsql true postgres 0600 0750" >> /etc/fix-attrs.d/postgres

Expand Down

0 comments on commit a2dc31a

Please sign in to comment.