summaryrefslogtreecommitdiffstats
path: root/bind/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'bind/Dockerfile')
-rw-r--r--bind/Dockerfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/bind/Dockerfile b/bind/Dockerfile
new file mode 100644
index 0000000..74f4a57
--- /dev/null
+++ b/bind/Dockerfile
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (C) 2020 Sebastian Francisco Colomar Bauza #
+# Copyright (C) 2020 Alejandro Colomar Andrés #
+# SPDX-License-Identifier: GPL-2.0-only #
+###############################################################################
+
+## alpine:latest
+FROM alpine@sha256:39eda93d15866957feaee28f8fc5adb545276a64147445c64992ef69804dbf01 \
+ AS dns
+
+RUN apk add --no-cache --upgrade bind
+
+CMD ["named", "-c", "/etc/bind/named.conf", "-g"]
+
+###############################################################################