You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
217 B

FROM golang:alpine as builder
ADD . /go/src/github.com/ginuerzh/gost/
RUN go install github.com/ginuerzh/gost/cmd/gost
FROM alpine:latest
WORKDIR /bin/
COPY --from=builder /go/bin/gost .
ENTRYPOINT ["/bin/gost"]