-
-
Notifications
You must be signed in to change notification settings - Fork 431
/
Dockerfile
50 lines (41 loc) · 1.87 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# syntax=docker.io/docker/dockerfile:1
FROM mcr.microsoft.com/dotnet/aspnet:8.0
# Add the MS repo to install `libmsquic` to support DNS-over-QUIC:
ADD --link https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb /
RUN <<HEREDOC
dpkg -i packages-microsoft-prod.deb && rm packages-microsoft-prod.deb
# `dnsutils` added to include the `dig` command for troubleshooting:
apt-get update && apt-get install -y libmsquic dnsutils
apt-get clean -y && rm -rf /var/lib/apt/lists/*
# `/etc/dns` is expected to exist the default directory for persisting state:
# (Users should volume mount to this location or modify the `CMD` of their container)
mkdir /etc/dns
HEREDOC
# Project is built outside of Docker, copy over the build directory:
WORKDIR /opt/technitium/dns
COPY --link ./DnsServerApp/bin/Release/publish /opt/technitium/dns
# Support for graceful shutdown:
STOPSIGNAL SIGINT
ENTRYPOINT ["/usr/bin/dotnet", "/opt/technitium/dns/DnsServerApp.dll"]
CMD ["/etc/dns"]
## Only append image metadata below this line:
EXPOSE \
# Standard DNS service
53/udp 53/tcp \
# DNS-over-QUIC (UDP) + DNS-over-TLS (TCP)
853/udp 853/tcp \
# DNS-over-HTTPS (UDP => HTTP/3) (TCP => HTTP/1.1 + HTTP/2)
443/udp 443/tcp \
# DNS-over-HTTP (for when running behind a reverse-proxy that terminates TLS)
80/tcp 8053/tcp \
# Technitium web console + API (HTTP / HTTPS)
5380/tcp 53443/tcp \
# DHCP
67/udp
# https://specs.opencontainers.org/image-spec/annotations/
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
LABEL org.opencontainers.image.title="Technitium DNS Server"
LABEL org.opencontainers.image.vendor="Technitium"
LABEL org.opencontainers.image.source="https://github.com/TechnitiumSoftware/DnsServer"
LABEL org.opencontainers.image.url="https://technitium.com/dns/"
LABEL org.opencontainers.image.authors="support@technitium.com"