mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-30 01:59:08 +00:00
12 lines
173 B
Docker
12 lines
173 B
Docker
FROM golang:1.9.2
|
|
|
|
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"]
|