2021-10-15 10:05:00 -05:00
|
|
|
# ---
|
|
|
|
# Stage 1: Install certs, build binary, create default config file
|
|
|
|
# ---
|
|
|
|
FROM docker.io/golang:1.16 AS builder
|
2021-12-03 22:50:58 -05:00
|
|
|
RUN mkdir -p /go/src/github.com/project-zot/zot
|
|
|
|
WORKDIR /go/src/github.com/project-zot/zot
|
2021-10-15 10:05:00 -05:00
|
|
|
COPY . .
|
2021-12-03 22:50:58 -05:00
|
|
|
RUN make clean exporter-minimal
|
2021-10-15 10:05:00 -05:00
|
|
|
RUN echo '{\n\
|
|
|
|
"Server": {\n\
|
|
|
|
"protocol": "http",\n\
|
|
|
|
"host": "127.0.0.1",\n\
|
|
|
|
"port": "5050"\n\
|
|
|
|
},\n\
|
|
|
|
"Exporter": {\n\
|
|
|
|
"port": "5051",\n\
|
|
|
|
"log": {\n\
|
|
|
|
"level": "debug"\n\
|
|
|
|
}\n\
|
|
|
|
}\n\
|
|
|
|
}\n' > config.json && cat config.json
|
|
|
|
|
|
|
|
# ---
|
|
|
|
# Stage 2: Final image with nothing but certs, binary, and default config file
|
|
|
|
# ---
|
|
|
|
FROM scratch AS final
|
2021-12-03 22:50:58 -05:00
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/bin/zot-exporter /zot-exporter
|
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/config.json /etc/zot/config.json
|
2021-10-15 10:05:00 -05:00
|
|
|
ENTRYPOINT ["/zot-exporter"]
|
|
|
|
EXPOSE 5051
|
|
|
|
VOLUME ["/var/lib/registry"]
|
|
|
|
CMD ["config", "/etc/zot/config.json"]
|