2015-03-23 22:16:14 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-05-08 14:02:50 +02:00
|
|
|
set -ex
|
2015-03-23 22:16:14 +01:00
|
|
|
|
2015-09-15 00:42:53 +02:00
|
|
|
./script/clean
|
|
|
|
|
2015-03-23 22:16:14 +01:00
|
|
|
TAG="docker-compose"
|
2019-02-05 10:50:55 +01:00
|
|
|
docker build -t "$TAG" .
|
2015-09-18 18:08:09 +02:00
|
|
|
docker run \
|
2016-01-15 22:27:43 +01:00
|
|
|
--rm --entrypoint="script/build/linux-entrypoint" \
|
2015-09-18 18:08:09 +02:00
|
|
|
-v $(pwd)/dist:/code/dist \
|
2015-11-12 23:29:58 +01:00
|
|
|
-v $(pwd)/.git:/code/.git \
|
2015-09-18 18:08:09 +02:00
|
|
|
"$TAG"
|