Update Dockerfile

By adding iproute2 to alpine base image fixed the error messages I was receiving. Ref #122
This commit is contained in:
Tin Voyager 2018-03-02 21:55:42 +00:00 committed by GitHub
commit 8dd20c7cb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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