WIP: Jenkins script
(cherry picked from commit 853ce255ea)
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
12 lines
187 B
Bash
Executable file
12 lines
187 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
TAG="docker-compose"
|
|
docker build -t "$TAG" .
|
|
docker run \
|
|
--rm \
|
|
--user=user \
|
|
--volume="$(pwd):/code" \
|
|
--entrypoint="script/build-linux-inner" \
|
|
"$TAG"
|