From 684d81397b245acbc9634d756f8a3c498d4e1502 Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Mon, 3 Jul 2017 15:17:07 -0700 Subject: [PATCH] Don't run bundle update in the Dockerfile (#3770) This avoids the US-ASCII bug in jekyll-redirect plugin --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc112f975f..b0182d8ed3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM starefossen/github-pages:137 -COPY . /usr/src/app/ +COPY . /usr/src/app -CMD jekyll serve -H 0.0.0.0 \ No newline at end of file +CMD bundle exec jekyll serve -d /_site --watch -H 0.0.0.0 -P 4000 \ No newline at end of file