blob: 7d3b69ba05c116e0effe9bfa473b3841c3afedd2 (
plain)
1
2
3
4
5
6
7
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"]
|