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