mirror of
https://github.com/t2linux/T2-Mint.git
synced 2026-04-30 13:53:20 -07:00
15 lines
220 B
Bash
Executable File
15 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
DOCKER_IMAGE=ubuntu:24.04
|
|
|
|
docker pull ${DOCKER_IMAGE}
|
|
docker run \
|
|
--privileged \
|
|
--rm \
|
|
-t \
|
|
-v "$(pwd)":/repo \
|
|
${DOCKER_IMAGE} \
|
|
/bin/bash -c "cd /repo && ./build.sh $1"
|