change registry address to https from http
diff --git a/auth/auth.go b/auth/auth.go
index ae0e71b..498b7d8 100644
--- a/auth/auth.go
+++ b/auth/auth.go
@@ -15,7 +15,7 @@
 const CONFIGFILE = "/var/lib/docker/.dockercfg"
 
 // the registry server we want to login against
-const REGISTRY_SERVER = "http://registry.docker.io"
+const REGISTRY_SERVER = "https://registry.docker.io"
 
 type AuthConfig struct {
 	Username string `json:"username"`