From 8dd20c7cb94fbd5045949c9b52038cdc789bf4f6 Mon Sep 17 00:00:00 2001 From: Tin Voyager <33103500+Tin-Voyager@users.noreply.github.com> Date: Fri, 2 Mar 2018 21:55:42 +0000 Subject: [PATCH] Update Dockerfile By adding iproute2 to alpine base image fixed the error messages I was receiving. Ref #122 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9e82ebe9..98f1e2d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN make # final stage FROM alpine -RUN apk add --no-cache --update bash libpcap-dev +RUN apk add --no-cache --update bash iproute2 libpcap-dev COPY --from=build-env /gocode/src/github.com/bettercap/bettercap/bettercap /app/ WORKDIR /app EXPOSE 80 443 53 5300 8080 8081 8082 8083 8000