31 lines
644 B
Docker
31 lines
644 B
Docker
|
FROM alpine:3.16.2 as builder
|
||
|
|
||
|
WORKDIR /go/src/github.com/systemli/mastodon-exporter
|
||
|
|
||
|
ENV USER=appuser
|
||
|
ENV UID=10001
|
||
|
|
||
|
RUN adduser \
|
||
|
--disabled-password \
|
||
|
--gecos "" \
|
||
|
--home "/nonexistent" \
|
||
|
--shell "/sbin/nologin" \
|
||
|
--no-create-home \
|
||
|
--uid "${UID}" \
|
||
|
"${USER}"
|
||
|
|
||
|
RUN apk add --no-cache --update ca-certificates
|
||
|
|
||
|
FROM scratch
|
||
|
|
||
|
COPY --from=builder /etc/passwd /etc/passwd
|
||
|
COPY --from=builder /etc/group /etc/group
|
||
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||
|
COPY mastodon-exporter /mastodon-exporter
|
||
|
|
||
|
USER appuser:appuser
|
||
|
|
||
|
EXPOSE 13120
|
||
|
|
||
|
ENTRYPOINT ["/mastodon-exporter"]
|