diff --git a/.gitpod.yml b/.gitpod.yml index 3827a3d63..b5caafa69 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -26,6 +26,7 @@ tasks: printf "❗ To get them, please follow https://docs.dev.to/backend/algolia/#get-api-keys\n\n" && read -p "Add them to config/application.yml, save the file, and press any key to continue... " -n 1 -r done ; + gem install solargraph; bin/setup && bin/startup github: diff --git a/Dockerfile b/Dockerfile index 416815344..63694c72a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apk update -qq && apk add git nodejs postgresql-client ruby-dev build-base \ # Install required bundler version # #------------------------------------------------------------------------------ -RUN gem install bundler:2.0.2 +RUN gem install bundler:2.1.4 #------------------------------------------------------------------------------ # diff --git a/bin/docker-setup b/bin/docker-setup index 6ab8fabf1..82c55293d 100755 --- a/bin/docker-setup +++ b/bin/docker-setup @@ -4,7 +4,7 @@ echo "== Building Docker image (this may take a while) ==" docker-compose build echo "== Setting up database ==" -docker-compose run web rails db:setup db:migrate search:setup +docker-compose run web rails db:setup db:migrate search:setup data_updates:run echo "== Starting app ==" docker-compose up