mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
12 lines
394 B
Docker
12 lines
394 B
Docker
FROM golang:1.6
|
|
|
|
RUN go get github.com/Jeffail/gabs
|
|
RUN go get github.com/bitly/go-simplejson
|
|
RUN go get github.com/pquerna/ffjson
|
|
RUN go get github.com/antonholmquist/jason
|
|
RUN go get github.com/mreiferson/go-ujson
|
|
RUN go get -tags=unsafe -u github.com/ugorji/go/codec
|
|
RUN go get github.com/mailru/easyjson
|
|
|
|
WORKDIR /go/src/github.com/buger/jsonparser
|
|
ADD . /go/src/github.com/buger/jsonparser |