Don't run bundle update in the Dockerfile (#3770)

This avoids the US-ASCII bug in jekyll-redirect plugin
This commit is contained in:
Misty Stanley-Jones
2017-07-03 15:17:07 -07:00
committed by GitHub
parent 404a7ba8c4
commit 684d81397b

View File

@@ -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
CMD bundle exec jekyll serve -d /_site --watch -H 0.0.0.0 -P 4000