Fix scripts to build packages, and MacOS pkg, and remove java dependency

Plus updated version.go
This commit is contained in:
Leonid Bugaev
2020-07-06 14:51:54 +03:00
parent 5cbb5ea85f
commit 839b41f91c
4 changed files with 35 additions and 6 deletions
+2 -2
View File
@@ -3,8 +3,8 @@ FROM golang:1.14
RUN apt-get update && apt-get install ruby vim-common -y
RUN apt-get install flex bison -y
RUN wget http://www.tcpdump.org/release/libpcap-1.8.1.tar.gz && tar xzf libpcap-1.8.1.tar.gz && cd libpcap-1.8.1 && ./configure && make install
RUN apt-get install default-jre default-jdk -y
RUN wget http://www.tcpdump.org/release/libpcap-1.9.1.tar.gz && tar xzf libpcap-1.9.1.tar.gz && cd libpcap-1.9.1 && ./configure && make install
RUN go get github.com/google/gopacket
RUN go get -u golang.org/x/lint/golint