aboutsummaryrefslogtreecommitdiff
path: root/src/unbound/Dockerfile
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2025-02-25 21:51:26 -0800
committerMax Resnick <max@ofmax.li>2025-02-25 21:51:26 -0800
commit1e89e2b903b578ec013df837af04fc8facc939cd (patch)
treee690201f8e1db22528b692bdeb97eee7e9422f4e /src/unbound/Dockerfile
parent0fce2402119c5601e6ef9498f0a22a1c75854a53 (diff)
downloadgrumpy-containers-1e89e2b903b578ec013df837af04fc8facc939cd.tar.gz
feat: add unbound container
Diffstat (limited to 'src/unbound/Dockerfile')
-rw-r--r--src/unbound/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unbound/Dockerfile b/src/unbound/Dockerfile
new file mode 100644
index 0000000..7d3b69b
--- /dev/null
+++ b/src/unbound/Dockerfile
@@ -0,0 +1,8 @@
+ARG BASE_VER=latest
+FROM public.ecr.aws/s0f9o2k5/base:${BASE_VER}
+
+COPY bin/entrypoint.sh /usr/bin/entrypoint.sh
+COPY etc/unbound.base.conf /etc/unbound/unbound.conf.d/unbound.base.conf
+RUN install_deb unbound
+
+ENTRYPOINT ["/usr/bin/entrypoint.sh"]