8 lines
303 B
Docker
8 lines
303 B
Docker
FROM debian:bookworm
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV TZ Europe/Paris
|
|
RUN apt-get update && apt-get -y install bind9
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
EXPOSE 53
|
|
ENTRYPOINT ["/usr/sbin/named", "-u", "bind", "-g"] |