From 4f27c1274bdb689632ceb6cc37133c4d660030c8 Mon Sep 17 00:00:00 2001 From: caprenter Date: Tue, 6 Jun 2023 13:51:21 +0100 Subject: [PATCH] Necessary to get the application up and running locally Was encountering a problem with the bundler version Used the solution here: https://stackoverflow.com/questions/47026174/find-spec-for-exe-cant-find-gem-bundler-0-a-gemgemnotfoundexception Signed-off-by: Chris Croome --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 0abec5c..980f3ee 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,6 +17,7 @@ services: BUNDLE_PATH: /vendor command: > sh -c ' + gem update --system && bundle && bundle exec jekyll build --destination /site --watch '