From 5b8abceb56faf39f90b9ca0cf48531d3bdace96e Mon Sep 17 00:00:00 2001 From: Adrien Duermael Date: Tue, 13 Dec 2016 15:28:42 -0800 Subject: [PATCH] =?UTF-8?q?don=E2=80=99t=20copy=20files=20to=20/=5Fsite=20?= =?UTF-8?q?(#871)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit files in /usr/src/app/allvbuild and /_site are the same. Let’s just serve what’s in /usr/src/app/allvbuild. Signed-off-by: Adrien Duermael --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e2c1775b6a1..0b358c77978 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,4 +32,4 @@ RUN svn co https://github.com/docker/docker/branches/$ENGINE_BRANCH/docs/referen && rm -rf allv # Serve the site, which is now all static HTML -CMD jekyll serve -s /usr/src/app/allvbuild -d /_site --no-watch -H 0.0.0.0 -P 4000 +CMD jekyll serve -s /usr/src/app/allvbuild --no-watch -H 0.0.0.0 -P 4000