You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mi...@apache.org on 2018/12/17 17:42:15 UTC

[trafficcontrol] branch master updated: lock TP dependency (#3132)

This is an automated email from the ASF dual-hosted git repository.

mitchell852 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c4a4c4  lock TP dependency (#3132)
5c4a4c4 is described below

commit 5c4a4c4dffe7d63185468f0c640f074ce9782b22
Author: Dan Kirkwood <da...@gmail.com>
AuthorDate: Mon Dec 17 10:42:10 2018 -0700

    lock TP dependency (#3132)
---
 infrastructure/docker/build/Dockerfile-traffic_portal | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/infrastructure/docker/build/Dockerfile-traffic_portal b/infrastructure/docker/build/Dockerfile-traffic_portal
index b6380dc..e37c619 100644
--- a/infrastructure/docker/build/Dockerfile-traffic_portal
+++ b/infrastructure/docker/build/Dockerfile-traffic_portal
@@ -39,9 +39,10 @@ RUN	yum -y install \
 		ruby-devel \
 		rubygems
 
-RUN	gem update --system
-RUN	gem install compass
-RUN	npm -g install bower grunt-cli
+RUN	gem update --system && \
+	gem install rb-inotify -v 0.9.10 && \
+	gem install compass && \
+	npm -g install bower grunt-cli
 
 # bower will not run as root by default
 RUN	echo '{ "allow_root": true }' > /root/.bowerrc