add golinks

Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
This commit is contained in:
Jess Frazelle 2019-12-15 17:09:55 -08:00
parent 0aafb7c4d4
commit 90e2ca1d48
No known key found for this signature in database
GPG key ID: E34EC3D4E4953C4A

22
golinks/Dockerfile Normal file
View file

@ -0,0 +1,22 @@
FROM golang:alpine as builder
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apk --no-cache add \
ca-certificates \
git
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
RUN go get github.com/kellegous/go || true \
&& cd /go/src/github.com/kellegous/go \
&& go build ./cmd/go \
&& mv go /usr/bin/go
FROM alpine:latest
COPY --from=builder /usr/bin/go /usr/bin/go
COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
ENTRYPOINT [ "go" ]