mirror of
https://github.com/mirage/qubes-mirage-firewall.git
synced 2025-07-13 02:19:33 -04:00

This adds support for HVM and disposable domains. Also, update the suggested RAM allocation slightly as 20 MB can be too small with lots of VMs.
8 lines
359 B
Bash
Executable file
8 lines
359 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
echo Building Docker image with dependencies..
|
|
docker build -t qubes-mirage-firewall .
|
|
echo Building Firewall...
|
|
docker run --rm -i -v `pwd`:/home/opam/qubes-mirage-firewall qubes-mirage-firewall
|
|
echo "SHA2 of build: $(sha256sum qubes_firewall.xen)"
|
|
echo "SHA2 last known: 2cad66c4b83817cdd1650f174586fd4daab7b7c271abd62844de6e6a17200750"
|