mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-14 18:09:50 +00:00
20 lines
288 B
Docker
20 lines
288 B
Docker
ARG BUILDER_IMAGE
|
|
ARG BASE_IMAGE
|
|
|
|
FROM ${BUILDER_IMAGE} as SRC
|
|
|
|
FROM ${BASE_IMAGE:-registry.access.redhat.com/ubi8/ubi-minimal}
|
|
|
|
WORKDIR /
|
|
COPY --from=SRC /manager .
|
|
|
|
# Update image
|
|
RUN microdnf update
|
|
|
|
USER 65532:65532
|
|
|
|
# Port for metrics and probes
|
|
EXPOSE 9090
|
|
|
|
ENTRYPOINT ["/manager"]
|