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