mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
add golinks
Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
This commit is contained in:
parent
0aafb7c4d4
commit
90e2ca1d48
22
golinks/Dockerfile
Normal file
22
golinks/Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user