60 lines
1.9 KiB
Docker
60 lines
1.9 KiB
Docker
FROM mcr.microsoft.com/dotnet/aspnet:7.0
|
|
LABEL product="Technitium DNS Server"
|
|
LABEL vendor="Technitium"
|
|
LABEL email="support@technitium.com"
|
|
LABEL project_url="https://technitium.com/dns/"
|
|
LABEL github_url="https://github.com/TechnitiumSoftware/DnsServer"
|
|
|
|
WORKDIR /opt/technitium/dns/
|
|
|
|
RUN apt update; apt install curl -y; \
|
|
curl https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb --output packages-microsoft-prod.deb; \
|
|
dpkg -i packages-microsoft-prod.deb; \
|
|
rm packages-microsoft-prod.deb
|
|
|
|
RUN apt update; apt install dnsutils libmsquic -y; apt clean -y;
|
|
|
|
COPY ./DnsServerApp/bin/Release/publish/ .
|
|
|
|
EXPOSE 5380/tcp
|
|
EXPOSE 53443/tcp
|
|
EXPOSE 53/udp
|
|
EXPOSE 53/tcp
|
|
EXPOSE 853/udp
|
|
EXPOSE 853/tcp
|
|
EXPOSE 443/udp
|
|
EXPOSE 443/tcp
|
|
EXPOSE 80/tcp
|
|
EXPOSE 8053/tcp
|
|
EXPOSE 67/udp
|
|
|
|
VOLUME ["/etc/dns"]
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
|
|
|
|
|
|
# Labels
|
|
LABEL \
|
|
io.hass.name="${BUILD_NAME}" \
|
|
io.hass.description="${BUILD_DESCRIPTION}" \
|
|
io.hass.arch="${BUILD_ARCH}" \
|
|
io.hass.type="addon" \
|
|
io.hass.version=${BUILD_VERSION} \
|
|
maintainer="Paul Sinclair <hello@addons.community>" \
|
|
org.opencontainers.image.title="${BUILD_NAME}" \
|
|
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
|
|
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
|
|
org.opencontainers.image.authors="Paul Sinclair <hello@addons.community>" \
|
|
org.opencontainers.image.licenses="MIT" \
|
|
org.opencontainers.image.url="https://addons.community" \
|
|
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
|
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
|
|
org.opencontainers.image.created=${BUILD_DATE} \
|
|
org.opencontainers.image.revision=${BUILD_REF} \
|
|
org.opencontainers.image.version=${BUILD_VERSION}
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/dotnet", "/opt/technitium/dns/DnsServerApp.dll"]
|
|
CMD ["/etc/dns"] |