Files
Reloader/build/package/Dockerfile.run
Mikhail Vladimirovich Nacharov 710396f66e add metrics endpoints to kubernetes specs
2020-10-28 01:13:49 +05:00

15 lines
248 B
Docker

FROM alpine:3.11
LABEL maintainer "Stakater Team"
RUN apk add --update --no-cache ca-certificates
COPY Reloader /bin/Reloader
# On alpine 'nobody' has uid 65534
USER 65534
# Port for metrics and probes
EXPOSE 9090
ENTRYPOINT ["/bin/Reloader"]