11 lines
171 B
Bash
Executable file
11 lines
171 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
TAG="docker-compose"
|
|
docker build -t "$TAG" .
|
|
docker run \
|
|
--rm \
|
|
--volume="$(pwd):/code" \
|
|
--entrypoint="script/build-linux-inner" \
|
|
"$TAG"
|