10 lines
269 B
Docker
10 lines
269 B
Docker
ARG BUILD_FROM=ghcr.io/hassio-addons/base:latest
|
|
FROM technitium/dns-server:latest
|
|
|
|
ENV DNS_SERVER_WEB_SERVICE_HTTPS_PORT=53443 \
|
|
DNS_SERVER_WEB_SERVICE_ENABLE_HTTPS=false
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |