From ec6e9ace51b5fb33db267cffcd5244bdbbad19cf Mon Sep 17 00:00:00 2001 From: Mario Kahlhofer Date: Thu, 29 Jun 2023 21:00:23 +0200 Subject: [PATCH] Upgrade to dnsmasq 2.89-r5 and alpine 3.18.2 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7785573..aa9d44b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ -FROM alpine:3.17.0 AS builder +FROM alpine:3.18.2 AS builder RUN apk add alpine-sdk && \ wget http://www.unixwiz.net/tools/nbtscan-source-1.0.35.tgz && \ tar zxvf nbtscan-source-1.0.35.tgz && \ make -FROM alpine:3.17.0 +FROM alpine:3.18.2 WORKDIR /home COPY --from=builder /nbtscan /usr/bin/nbtscan COPY run.sh netbios_scanner.sh ./ -RUN apk add --no-cache "dnsmasq=2.87-r0" && \ +RUN apk add --no-cache "dnsmasq=2.89-r5" && \ echo "addn-hosts=/etc/hosts.netbios" > /etc/dnsmasq.conf && \ echo "conf-dir=/etc/dnsmasq,*.conf" >> /etc/dnsmasq.conf && \ chmod 755 /usr/bin/nbtscan && \