mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-03-12 05:25:23 -07:00
16 lines
292 B
Bash
Executable File
16 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
cd "`dirname $(readlink -f ${0})`"
|
|
|
|
docker build -t chiaki-xenial . -f Dockerfile.xenial
|
|
cd ..
|
|
docker run --rm \
|
|
-v "`pwd`:/build/chiaki" \
|
|
-w "/build/chiaki" \
|
|
--device /dev/fuse \
|
|
--cap-add SYS_ADMIN \
|
|
-t chiaki-xenial \
|
|
/bin/bash -c "scripts/build-appimage.sh"
|
|
|