summaryrefslogtreecommitdiff
path: root/docker-build
blob: 7ff5226cdf0d1c3c4de8493471b07e38ddc7b3e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash 
 
output="$1"
shift
 
exec docker run -ti \
     -v "$(pwd)":/treble \
     -v "$output":/treble_output \
     -w /treble_output \
     treble \
     /bin/bash /treble/build.sh "$@"