Merge pull request #480 from epipho/docker-fix-apt

Adding apt-get update prior to attempting install of apt-transport-https...
This commit is contained in:
Brad Rydzewski 2014-09-23 23:34:20 -07:00
commit 3a34860e85

View file

@ -54,6 +54,8 @@ func (d *Docker) Write(f *buildfile.Buildfile, r *repo.Repo) {
return
}
f.WriteCmd("sudo apt-get update")
// Ensure correct apt-get has the https method-driver as per (http://askubuntu.com/questions/165676/)
f.WriteCmd("sudo apt-get install apt-transport-https")