Update Dockerfile

Add iw to docker image
This commit is contained in:
Dan 2025-02-11 08:39:00 -05:00 committed by GitHub
parent 8eedf6d90c
commit 0ea1dec113
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ RUN git clone https://github.com/bettercap/caplets /usr/local/share/bettercap/ca
# final stage
FROM alpine:3.20
RUN apk add --no-cache ca-certificates
RUN apk add --no-cache bash iproute2 libpcap libusb-dev libnetfilter_queue wireless-tools
RUN apk add --no-cache bash iproute2 libpcap libusb-dev libnetfilter_queue wireless-tools iw
COPY --from=build-env /go/src/github.com/bettercap/bettercap/bettercap /app/
COPY --from=build-env /usr/local/share/bettercap/caplets /app/
WORKDIR /app