don't need to reset the gemfile.lock in the container

This commit is contained in:
HoneyryderChuck 2018-07-18 14:21:04 +01:00
parent 712d0f604a
commit c118924d6f

View File

@ -3,9 +3,7 @@ apk --update add g++ make git bash
export PATH=$GEM_HOME/bin:$BUNDLE_PATH/gems/bin:$PATH
mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
gem install bundler -v="1.16.1" --no-doc --conservative
cd /home && touch Gemfile.lock && \
rm Gemfile.lock && \
bundle install --quiet --jobs 4 && \
cd /home && bundle install --quiet --jobs 4 && \
bundle exec rake test:ci
RET=$?