mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
Conflicts: Dockerfile Makefile output_http.go output_http_test.go settings.go
12 lines
242 B
Docker
12 lines
242 B
Docker
FROM google/golang
|
|
|
|
RUN cd /goroot/src/ && GOOS=linux GOARCH=386 ./make.bash --no-clean
|
|
|
|
RUN apt-get update && apt-get install ruby vim-common -y
|
|
|
|
WORKDIR /gopath/src/github.com/buger/gor/
|
|
|
|
ADD . /gopath/src/github.com/buger/gor/
|
|
|
|
RUN go get
|