Create a docker container and a script to call it, to help people build go plugins for use with fission.
6 lines
72 B
Docker
6 lines
72 B
Docker
FROM golang:1.8
|
|
|
|
ENV GOPATH /usr
|
|
RUN go get github.com/fission/fission
|
|
|