Markus Pesch
9b1566760a
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
519 B
Docker
17 lines
519 B
Docker
FROM docker.io/library/archlinux:latest
|
|
|
|
RUN pacman \
|
|
--sync \
|
|
--sysupgrade \
|
|
--refresh --noconfirm \
|
|
bind bind-tools
|
|
|
|
RUN mkdir --parents /etc/bind/zones /var/log/bind && \
|
|
mv /etc/named.conf /etc/bind/named.conf && \
|
|
cp --recursive /var/named/* /etc/bind/zones && \
|
|
sed --in-place --expression 's#directory "/var/named";#directory "/etc/bind/zones";#g' /etc/bind/named.conf
|
|
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
|
|
EXPOSE 53
|
|
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ] |