7 lines
229 B
Docker
7 lines
229 B
Docker
FROM golang:latest as builder
|
|
|
|
RUN go get -v git.thisco.de/mirrors/random-utils/cmd/manage-pictures
|
|
|
|
FROM alpine:latest
|
|
COPY --from=builder /go/bin/manage-pictures /usr/bin/manage-pictures
|
|
ENTRYPOINT ["/usr/bin/manage-pictures"]
|