diff --git a/Dockerfile b/Dockerfile index aa9d44b..fcf195e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ -FROM alpine:3.18.2 AS builder +FROM alpine:3.19.1 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.18.2 +FROM alpine:3.19.1 WORKDIR /home COPY --from=builder /nbtscan /usr/bin/nbtscan COPY run.sh netbios_scanner.sh ./ -RUN apk add --no-cache "dnsmasq=2.89-r5" && \ +RUN apk add --no-cache "dnsmasq=2.90-r2" && \ echo "addn-hosts=/etc/hosts.netbios" > /etc/dnsmasq.conf && \ echo "conf-dir=/etc/dnsmasq,*.conf" >> /etc/dnsmasq.conf && \ chmod 755 /usr/bin/nbtscan && \