FROM golang:latest as builder RUN go get -v git.thisco.de/mirrors/random-utils/cmd/dups FROM alpine:latest COPY --from=builder /go/bin/dups /usr/bin/dups ENTRYPOINT ["/usr/bin/dups"]