Newer
Older
#!/bin/bash
cd "$(dirname "$0")"
set -ex
docker run -it -v "$(pwd)":/app \
-c "apt-get update; \
apt-get install -y cmake build-essential; \
cd /app; \
bundle update; \
bundle install;"
#!/bin/bash
cd "$(dirname "$0")"
set -ex
docker run -it -v "$(pwd)":/app \
-c "apt-get update; \
apt-get install -y cmake build-essential; \
cd /app; \
bundle update; \
bundle install;"