2021-01-26 14:26:18 -08:00
|
|
|
# ---
|
|
|
|
# Stage 1: Install certs, build binary, create default config file
|
|
|
|
# ---
|
2024-02-07 20:54:28 +02:00
|
|
|
FROM --platform=$BUILDPLATFORM ghcr.io/project-zot/golang:1.21 AS builder
|
2023-10-04 09:12:56 -07:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
2021-12-15 22:47:53 +00:00
|
|
|
ARG COMMIT
|
2023-10-04 09:12:56 -07:00
|
|
|
|
2021-12-13 19:23:31 +00:00
|
|
|
RUN apt-get update && apt-get install -y git make ca-certificates
|
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
|
2021-01-26 14:26:18 -08:00
|
|
|
COPY . .
|
2023-10-04 09:12:56 -07:00
|
|
|
RUN make COMMIT=$COMMIT OS=$TARGETOS ARCH=$TARGETARCH clean binary
|
2021-12-13 19:23:31 +00:00
|
|
|
RUN echo '# Default config file for zot server\n\
|
2021-01-26 14:26:18 -08:00
|
|
|
http:\n\
|
|
|
|
address: 0.0.0.0\n\
|
|
|
|
port: 5000\n\
|
|
|
|
storage:\n\
|
|
|
|
rootDirectory: /var/lib/registry\n\
|
|
|
|
gc: false\n\
|
2023-09-28 21:59:52 +03:00
|
|
|
dedupe: false' > config.yaml && cat config.yaml
|
2021-01-26 14:26:18 -08:00
|
|
|
|
|
|
|
# ---
|
|
|
|
# Stage 2: Final image with nothing but certs, binary, and default config file
|
|
|
|
# ---
|
2023-11-21 04:54:07 -08:00
|
|
|
FROM gcr.io/distroless/base-debian12 AS final
|
2023-10-04 09:12:56 -07:00
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
2021-01-26 14:26:18 -08:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2023-10-04 09:12:56 -07:00
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/bin/zot-$TARGETOS-$TARGETARCH /usr/bin/zot
|
|
|
|
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"]
|
2021-01-26 14:26:18 -08:00
|
|
|
EXPOSE 5000
|
|
|
|
VOLUME ["/var/lib/registry"]
|
2023-09-28 21:59:52 +03:00
|
|
|
CMD ["serve", "/etc/zot/config.yaml"]
|