mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
Bumps golang from 1.19 to 1.20. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
390 B
Docker
13 lines
390 B
Docker
FROM golang:1.20
|
|
|
|
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.10.0.tar.gz && tar xzf libpcap-1.10.0.tar.gz && cd libpcap-1.10.0 && ./configure && make install
|
|
|
|
WORKDIR /go/src/github.com/buger/goreplay/
|
|
ADD . /go/src/github.com/buger/goreplay/
|
|
|
|
RUN go get golang.org/x/lint/golint
|
|
RUN go get
|