mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-29 10:12:38 +02:00
11 lines
288 B
Bash
Executable file
11 lines
288 B
Bash
Executable file
#!/bin/bash
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get update
|
|
apt-get install -y qemu-utils wget nbdfuse
|
|
cd /build
|
|
./alpine-make-vm-image \
|
|
--image-format qcow2 \
|
|
--image-size 2G \
|
|
--packages "$(cat packages)" \
|
|
--script-chroot \
|
|
dangerzone.qcow2 -- ./configure.sh
|