Install docker-squash in the PATH
authorRafael dos Santos Silva <xfalcox@gmail.com>
Fri, 28 Oct 2016 19:31:06 +0000 (17:31 -0200)
committerRafael dos Santos Silva <xfalcox@gmail.com>
Fri, 28 Oct 2016 19:31:34 +0000 (17:31 -0200)
image/build.rb

index 7f7cd0b423f7c94b6b44855ac49872a27e6beab1..a712eb0b916af9e5fae5a39b5a496b07ca19552e 100644 (file)
@@ -22,7 +22,7 @@ end
 def ensure_docker_squash
   docker_squash = "https://github.com/goldmann/docker-squash/archive/master.zip"
   run ("apt install python-pip")
-  run ("pip install --user '#{docker_squash}' --upgrade")
+  run ("pip install '#{docker_squash}' --upgrade")
 end
 
 
@@ -94,8 +94,8 @@ todo.each do |image|
   puts images[image]
   bump(images[image][:name], options[:version]) if options[:version]
 
-  dev_deps() if image == 'discourse_dev'
-  run "(cd base && ./download_phantomjs)" if image == 'base'
+  dev_deps() if image == :discourse_dev
+  run "(cd base && ./download_phantomjs)" if image == :base
 
   build(images[image])
 end