2020-01-24 11:54:38 -06:00
|
|
|
# ---
|
|
|
|
# Stage 1: Install certs, build binary, create default config file
|
|
|
|
# ---
|
2022-10-05 13:21:14 +03:00
|
|
|
FROM ghcr.io/project-zot/golang:1.19 AS builder
|
2021-12-15 22:47:53 +00:00
|
|
|
ARG COMMIT
|
2022-01-24 05:19:01 +00:00
|
|
|
ARG OS
|
|
|
|
ARG ARCH
|
2021-12-04 03:50:58 +00:00
|
|
|
RUN mkdir -p /go/src/github.com/project-zot/zot
|
|
|
|
WORKDIR /go/src/github.com/project-zot/zot
|
2020-01-24 11:54:38 -06:00
|
|
|
COPY . .
|
2022-01-24 05:19:01 +00:00
|
|
|
RUN make COMMIT=$COMMIT OS=$OS ARCH=$ARCH clean binary
|
2020-11-05 17:39:14 -08:00
|
|
|
RUN echo '{\n\
|
|
|
|
"storage": {\n\
|
|
|
|
"rootDirectory": "/var/lib/registry"\n\
|
|
|
|
},\n\
|
|
|
|
"http": {\n\
|
|
|
|
"address": "0.0.0.0",\n\
|
|
|
|
"port": "5000"\n\
|
|
|
|
},\n\
|
|
|
|
"log": {\n\
|
|
|
|
"level": "debug"\n\
|
|
|
|
}\n\
|
|
|
|
}\n' > config.json && cat config.json
|
2020-01-24 11:54:38 -06:00
|
|
|
|
|
|
|
# ---
|
|
|
|
# Stage 2: Final image with nothing but certs, binary, and default config file
|
|
|
|
# ---
|
2022-02-16 22:03:03 +00:00
|
|
|
FROM gcr.io/distroless/base AS final
|
2022-02-10 21:38:37 +00:00
|
|
|
ARG OS
|
|
|
|
ARG ARCH
|
2020-01-24 11:54:38 -06:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2022-01-24 05:19:01 +00:00
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/bin/zot-$OS-$ARCH /usr/bin/zot
|
2021-12-04 03:50:58 +00:00
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/config.json /etc/zot/config.json
|
2021-12-01 02:26:44 +00:00
|
|
|
ENTRYPOINT ["/usr/bin/zot"]
|
2020-01-24 11:54:38 -06:00
|
|
|
EXPOSE 5000
|
|
|
|
VOLUME ["/var/lib/registry"]
|
2020-11-05 17:39:14 -08:00
|
|
|
CMD ["serve", "/etc/zot/config.json"]
|