From 4c56af4e0b4577d6a05817610ec11155451b67fb Mon Sep 17 00:00:00 2001 From: Salt Date: Fri, 26 Feb 2021 22:14:35 -0600 Subject: [PATCH] Set up a stub dockerfile for resolver --- desu.local/dns-unbound/Dockerfile | 2 ++ desu.local/dns-unbound/build-and-push.sh | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 desu.local/dns-unbound/Dockerfile create mode 100755 desu.local/dns-unbound/build-and-push.sh diff --git a/desu.local/dns-unbound/Dockerfile b/desu.local/dns-unbound/Dockerfile new file mode 100644 index 0000000..6f1d1cf --- /dev/null +++ b/desu.local/dns-unbound/Dockerfile @@ -0,0 +1,2 @@ +FROM klutchell/unbound:latest +# TODO: Uh diff --git a/desu.local/dns-unbound/build-and-push.sh b/desu.local/dns-unbound/build-and-push.sh new file mode 100755 index 0000000..85e0faf --- /dev/null +++ b/desu.local/dns-unbound/build-and-push.sh @@ -0,0 +1,3 @@ +#! /bin/sh +project="unbound-desu-local" +docker build --platform linux/arm,linux/arm64,linux/amd64 . -t "rehashedsalt/$project:latest" -t "rehashedsalt/$project:$(git rev-parse --short=7 HEAD)" --push