mirror of
https://github.com/rancher/os.git
synced 2025-06-26 23:06:51 +00:00
11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
export DOCKER_IMAGE=rancher-os-build
|
|
|
|
./scripts/ci "$@"
|
|
mkdir -p dist
|
|
docker run --rm -it -e CHOWN_ID=$(id -u) -v $(pwd)/dist:/source/target $DOCKER_IMAGE
|