2020-01-24 12:54:38 -05:00
|
|
|
# ---
|
|
|
|
# Stage 1: Install certs, build binary, create default config file
|
|
|
|
# ---
|
2024-03-20 13:53:11 -05:00
|
|
|
FROM --platform=$BUILDPLATFORM ghcr.io/project-zot/golang:1.22 AS builder
|
2023-09-26 11:09:34 -05:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
2021-12-15 17:47:53 -05:00
|
|
|
ARG COMMIT
|
2023-09-26 11:09:34 -05:00
|
|
|
|
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
|
2020-01-24 12:54:38 -05:00
|
|
|
COPY . .
|
2023-09-26 11:09:34 -05:00
|
|
|
RUN make COMMIT=$COMMIT OS=$TARGETOS ARCH=$TARGETARCH clean binary
|
2020-11-05 20:39:14 -05:00
|
|
|
RUN echo '{\n\
|
|
|
|
"storage": {\n\
|
|
|
|
"rootDirectory": "/var/lib/registry"\n\
|
|
|
|
},\n\
|
|
|
|
"http": {\n\
|
|
|
|
"address": "0.0.0.0",\n\
|
2024-10-31 02:44:04 -05:00
|
|
|
"port": "5000",\n\
|
|
|
|
"compat": ["docker2s2"]\n\
|
2020-11-05 20:39:14 -05:00
|
|
|
},\n\
|
|
|
|
"log": {\n\
|
|
|
|
"level": "debug"\n\
|
|
|
|
}\n\
|
|
|
|
}\n' > config.json && cat config.json
|
2020-01-24 12:54:38 -05:00
|
|
|
|
|
|
|
# ---
|
|
|
|
# Stage 2: Final image with nothing but certs, binary, and default config file
|
|
|
|
# ---
|
2023-11-21 07:54:07 -05:00
|
|
|
FROM gcr.io/distroless/base-debian12 AS final
|
2023-09-26 11:09:34 -05:00
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
2020-01-24 12:54:38 -05:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2023-09-26 11:09:34 -05:00
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/bin/zot-$TARGETOS-$TARGETARCH /usr/bin/zot
|
2021-12-03 22:50:58 -05:00
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/config.json /etc/zot/config.json
|
2021-11-30 21:26:44 -05:00
|
|
|
ENTRYPOINT ["/usr/bin/zot"]
|
2020-01-24 12:54:38 -05:00
|
|
|
EXPOSE 5000
|
|
|
|
VOLUME ["/var/lib/registry"]
|
2020-11-05 20:39:14 -05:00
|
|
|
CMD ["serve", "/etc/zot/config.json"]
|