You've already forked T2-Debian-and-Ubuntu-Kernel
mirror of
https://github.com/t2linux/T2-Debian-and-Ubuntu-Kernel.git
synced 2026-04-30 13:49:30 -07:00
14 lines
200 B
Bash
Executable File
14 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
DOCKER_IMAGE=ubuntu:20.04
|
|
|
|
docker pull ${DOCKER_IMAGE}
|
|
docker run \
|
|
-t \
|
|
--rm \
|
|
-v "$(pwd)":/repo \
|
|
${DOCKER_IMAGE} \
|
|
/bin/bash -c 'cd /repo && ./build.sh'
|