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