Skip to content

Commit 631f28c

Browse files
committed
Add bundle install script (sans update)
1 parent f1284ea commit 631f28c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docker/install-gemfile-lock

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
3+
docker run -it --rm \
4+
-v $(pwd):/app \
5+
$(grep ^FROM ./Dockerfile |cut -d ' ' -f2) \
6+
/bin/bash -c 'apt-get update -qq && apt-get install -y --no-install-recommends make git netbase && cd /app && gem install bundler && bundle install --jobs 3; echo "LOCK_FILE_UPDATE_EXIT_CODE=$?"'

0 commit comments

Comments
 (0)