You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
FROM ubuntu:bionic
|
|
|
|
|
|
RUN apt-get update \
|
|
|
&& apt-get install -y \
|
|
|
bind9 \
|
|
|
bind9utils \
|
|
|
bind9-doc
|
|
|
|
|
|
# Enable IPv4
|
|
|
RUN sed -i 's/OPTIONS=.*/OPTIONS="-4 -u bind"/' /etc/default/bind9
|
|
|
|
|
|
# Copy configuration files
|
|
|
COPY named.conf.options /etc/bind/
|
|
|
COPY named.conf.local /etc/bind/
|
|
|
COPY db.getssl.test /etc/bind/zones/
|
|
|
|
|
|
# Run eternal loop
|
|
|
CMD ["/bin/bash", "-c", "while :; do sleep 10; done"]
|