summaryrefslogtreecommitdiff
path: root/bind9
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-12 14:08:34 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-12 14:08:34 -0400
commit19ff6e513cc71516f587ca76d5bcde3cfed3e9c6 (patch)
tree2dfeb69ed87eba8aa4f1eac13372004ab496c6f0 /bind9
parentupdate minecraft image (diff)
downloadimages-19ff6e513cc71516f587ca76d5bcde3cfed3e9c6.tar.gz
images-19ff6e513cc71516f587ca76d5bcde3cfed3e9c6.tar.bz2
images-19ff6e513cc71516f587ca76d5bcde3cfed3e9c6.zip
update build scripts
Diffstat (limited to 'bind9')
-rw-r--r--bind9/Dockerfile3
-rwxr-xr-xbind9/build10
2 files changed, 12 insertions, 1 deletions
diff --git a/bind9/Dockerfile b/bind9/Dockerfile
index 761647f..a8e7d62 100644
--- a/bind9/Dockerfile
+++ b/bind9/Dockerfile
@@ -1,4 +1,5 @@
-FROM alpine
+ARG ALPINE_VERSION="3.21"
+FROM alpine:${ALPINE_VERSION}
# install packages
RUN apk add --no-cache tini bind
diff --git a/bind9/build b/bind9/build
new file mode 100755
index 0000000..f38f081
--- /dev/null
+++ b/bind9/build
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -e
+
+. ../env
+
+IMAGE=bind9
+
+init
+buildx