mirror of
https://github.com/chenasraf/opensnp.org-docker.git
synced 2026-05-17 17:48:10 +00:00
12 lines
247 B
Bash
Executable File
12 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
snpr_rev="$SNPR_REV"
|
|
if [ -z "$snpr_rev" ]; then
|
|
snpr_rev=$(git ls-remote https://github.com/opensnp/snpr master | cut -f 1)
|
|
fi
|
|
|
|
docker-compose build --build-arg SNPR_REV=$snpr_rev rails
|
|
docker-compose build sidekiq
|