diff options
| author | Max Resnick <max@ofmax.li> | 2025-10-17 22:32:08 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2025-10-17 22:32:08 -0700 |
| commit | 8cade5a8af3b2827020d39f07393e779f8b23e7c (patch) | |
| tree | 09d716a1cc611c5648bce9ae60b94964cebcb023 /src/unbound-adblock/Dockerfile | |
| parent | 4e92c90f36e520b6bc55efc2d5630c14d3ec1245 (diff) | |
| download | grumpy-containers-8cade5a8af3b2827020d39f07393e779f8b23e7c.tar.gz | |
chore: actually add the server blocks
Diffstat (limited to 'src/unbound-adblock/Dockerfile')
| -rw-r--r-- | src/unbound-adblock/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unbound-adblock/Dockerfile b/src/unbound-adblock/Dockerfile index bd5939f..849feb3 100644 --- a/src/unbound-adblock/Dockerfile +++ b/src/unbound-adblock/Dockerfile @@ -1,8 +1,9 @@ ARG BASE_VER=latest FROM public.ecr.aws/x2w2w0z4/base:${BASE_VER} +RUN install_deb unbound unbound-anchor 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 unbound-anchor +COPY etc/zones/ /etc/unbound/unbound.conf.d/ ENTRYPOINT ["/usr/bin/entrypoint.sh"] |