This is an automated email from the ASF dual-hosted git repository.
aw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yetus.git
The following commit(s) were added to refs/heads/master by this push:
new 2c7f160 YETUS-846. hard-set pip and gem installs
2c7f160 is described below
commit 2c7f160264eceb563158ac75976502215d76414d
Author: Allen Wittenauer <[email protected]>
AuthorDate: Tue Apr 9 06:35:59 2019 -0700
YETUS-846. hard-set pip and gem installs
Signed-off-by: Allen Wittenauer <[email protected]>
---
precommit/src/main/shell/test-patch-docker/Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/precommit/src/main/shell/test-patch-docker/Dockerfile
b/precommit/src/main/shell/test-patch-docker/Dockerfile
index c733005..e85b187 100644
--- a/precommit/src/main/shell/test-patch-docker/Dockerfile
+++ b/precommit/src/main/shell/test-patch-docker/Dockerfile
@@ -172,7 +172,7 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
\
&& rm /usr/local/bin/pip
# astroid and pylint go hand-in-hand. Upgrade both at the same time.
# hadolint ignore=DL3013
-RUN pip3 install -v astroid==2.2.4 pylint==2.3.1 docker-compose
+RUN pip3 install -v astroid==2.2.4 pylint==2.3.1 docker-compose==1.24.0
RUN mv /usr/local/bin/pylint /usr/local/bin/pylint3
######
@@ -204,8 +204,8 @@ RUN apt-get -q update && apt-get -q install
--no-install-recommends -y \
ruby-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
-RUN gem install rake
-RUN gem install rubocop
+RUN gem install rake -v 12.3.2
+RUN gem install rubocop -v 0.67.2
RUN gem install bundler -v 1.17.3
# set some reasonable defaults for ruby
# user's can always override these as needed