Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packagingbuild/bionic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN apt-get update && \
devscripts debhelper dh-make libldap2-dev libsasl2-dev && apt-get clean

# Install fresh pip and co
RUN curl https://bootstrap.pypa.io/get-pip.py | python3 - virtualenv==16.6.0 pip==19.1.1 wheel setuptools cryptography; \
RUN curl https://bootstrap.pypa.io/get-pip.py | python3 - virtualenv==16.6.0 pip==20.0.2 wheel setuptools cryptography; \
pip3 install --upgrade requests[security] && rm -rf /root/.cache

# We use our dh-virtualenv version, since it fixes shebangd lines rewrites
Expand Down
2 changes: 1 addition & 1 deletion packagingbuild/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RUN yum -y install nc net-tools
RUN yum -y install rpmdevtools epel-release
# Install python3
RUN yum -y install python3 python3-devel python3-virtualenv && \
pip3 install virtualenv==16.6.0 pip==19.1.1 wheel setuptools
pip3 install virtualenv==16.6.0 pip==20.0.2 wheel setuptools
RUN pip3 install --upgrade requests[security] venvctrl && rm -rf /root/.cache

VOLUME ["/home/busybee/build"]
Expand Down
2 changes: 1 addition & 1 deletion packagingbuild/centos8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ RUN yum -y install nc net-tools

# Install development tools and python3 for EL8
RUN yum -y install python3 python3-devel rpmdevtools python3-virtualenv && \
pip3 install virtualenv==16.6.0 pip==19.1.1 wheel setuptools
pip3 install virtualenv==16.6.0 pip==20.0.2 wheel setuptools

RUN pip3 install requests[security] venvctrl --upgrade && rm -rf /root/.cache

Expand Down
2 changes: 1 addition & 1 deletion packagingbuild/xenial/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN apt-get update && \
devscripts debhelper dh-make libldap2-dev libsasl2-dev && apt-get clean

# Install fresh pip and co
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.6 - virtualenv==16.6.0 pip==19.1.1 wheel setuptools; \
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.6 - virtualenv==16.6.0 pip==20.0.2 wheel setuptools; \
pip3.6 install --upgrade requests[security] && rm -rf /root/.cache

# We use our dh-virtualenv version, since it fixes shebangd lines rewrites
Expand Down