6 lines
118 B
Bash
6 lines
118 B
Bash
|
#!/usr/bin/env bash
|
||
|
# docker rebuild and bundle install
|
||
|
# updates Gemfile.lock
|
||
|
|
||
|
docker-compose run web bundle install
|