mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
173 B
Docker
12 lines
173 B
Docker
FROM golang:1.8.1
|
|
|
|
ENV USER root
|
|
|
|
WORKDIR /go/src/github.com/cloudflare/cfssl
|
|
COPY . .
|
|
|
|
# restore all deps and build
|
|
RUN go get github.com/mitchellh/gox
|
|
|
|
ENTRYPOINT ["gox"]
|