mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
8 lines
270 B
Docker
8 lines
270 B
Docker
FROM iron/go:dev
|
|
|
|
RUN mkdir -p /go/src/github.com/Masterminds
|
|
ENV GOPATH=/go
|
|
RUN cd /go/src/github.com/Masterminds && git clone https://github.com/Masterminds/glide.git && cd glide && go build
|
|
RUN cp /go/src/github.com/Masterminds/glide/glide /bin
|
|
|
|
ENTRYPOINT ["glide"] |