mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
14 lines
298 B
Bash
Executable file
14 lines
298 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# script/bootstrap: Resolve all dependencies that the application requires to
|
|
# run.
|
|
|
|
set -e
|
|
|
|
docker_compose="docker-compose --file docker-compose.yml"
|
|
|
|
echo "==> Building Docker image…"
|
|
$docker_compose build
|
|
|
|
echo "==> Building assets…"
|
|
bin/rake assets:precompile
|