mirror of
https://github.com/rancher/os.git
synced 2025-06-19 03:31:55 +00:00
14 lines
212 B
Bash
Executable File
14 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
docker build -t zombie/os - < scripts/moby/Dockerfile
|
|
|
|
|
|
cd dist
|
|
mkdir -p moby
|
|
cd moby
|
|
moby build -output kernel+initrd -output iso-bios ../../scripts/moby/rancheros.yml
|
|
|
|
|