mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-09 08:50:05 +08:00
24 lines
491 B
Docker
24 lines
491 B
Docker
FROM alpine:3.17
|
|
|
|
LABEL maintainer "The Infrastructure Company GmbH <info@servercow.de>"
|
|
|
|
RUN apk add --update --no-cache \
|
|
curl \
|
|
unbound \
|
|
bash \
|
|
openssl \
|
|
drill \
|
|
tzdata \
|
|
&& curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache \
|
|
&& chown root:unbound /etc/unbound \
|
|
&& adduser unbound tty \
|
|
&& chmod 775 /etc/unbound
|
|
|
|
EXPOSE 53/udp 53/tcp
|
|
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
|
|
CMD ["/usr/sbin/unbound"]
|