From dfc7f870c1154d27de38fc16fcd9925b8d124b73 Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Thu, 26 Jan 2017 14:51:00 -0800 Subject: [PATCH] Use a different variable for svn than wget The master branch is called trunk in svn parlance and the directory structure is a little bit different. Also trust the certificates for the https svn connections, otherwise we may be prompted. Fix Dockerfile in vnext-engine --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 298b4756ba3..1588b4ea48a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ RUN svn co https://github.com/docker/docker/$ENGINE_SVN_BRANCH/docs/extend md_so && wget -O md_source/engine/reference/run.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/run.md \ && wget -O md_source/engine/reference/commandline/cli.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/commandline/cli.md \ && wget -O md_source/engine/deprecated.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/deprecated.md \ - && svn co https://github.com/docker/distribution/branches/$DISTRIBUTION_SVN_BRANCH/docs/spec md_source/registry/spec \ + && svn co https://github.com/docker/distribution/$DISTRIBUTION_SVN_BRANCH/docs/spec md_source/registry/spec \ && rm md_source/registry/spec/api.md.tmpl \ && wget -O md_source/registry/configuration.md https://raw.githubusercontent.com/docker/distribution/$DISTRIBUTION_BRANCH/docs/configuration.md \ && rm -rf md_source/apidocs/cloud-api-source \