7 lines
185 B
Docker
7 lines
185 B
Docker
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"]
|