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