From 4f499c0a5976624c2042101ba8bcd1c8876d151e Mon Sep 17 00:00:00 2001 From: Dakota Benjamin Date: Tue, 27 Sep 2016 11:48:18 -0400 Subject: [PATCH] Use https protocol There is a higher likelihood of `git://` being blocked by a proxy or firewall than `https://` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cd43557d..62c0ceec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ADD requirements.txt /webodm/ RUN pip install -r requirements.txt # swagger_spec_validator is not up to date, fetch directly from github -RUN pip install --upgrade git+git://github.com/Yelp/swagger_spec_validator +RUN pip install --upgrade git+https://github.com/Yelp/swagger_spec_validator # Add repository files ADD . /webodm/