mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-08 06:21:32 +01:00
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" ]
|
||||
Reference in New Issue
Block a user