2021-01-26 17:26:18 -05:00
|
|
|
# ---
|
|
|
|
# Stage 1: Install certs, build binary, create default config file
|
|
|
|
# ---
|
2021-09-23 14:32:25 -05:00
|
|
|
FROM docker.io/golang:1.16-alpine AS builder
|
2021-12-15 17:47:53 -05:00
|
|
|
ARG COMMIT
|
2021-01-26 17:26:18 -05:00
|
|
|
RUN apk --update add git make ca-certificates
|
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-01-26 17:26:18 -05:00
|
|
|
COPY . .
|
2021-12-15 17:47:53 -05:00
|
|
|
RUN make COMMIT=$COMMIT clean binary
|
2021-01-26 17:26:18 -05:00
|
|
|
RUN echo -e '# Default config file for zot server\n\
|
|
|
|
http:\n\
|
|
|
|
address: 0.0.0.0\n\
|
|
|
|
port: 5000\n\
|
|
|
|
storage:\n\
|
|
|
|
rootDirectory: /var/lib/registry\n\
|
|
|
|
gc: false\n\
|
|
|
|
dedupe: false' > config.yml && cat config.yml
|
|
|
|
|
|
|
|
# ---
|
|
|
|
# Stage 2: Final image with nothing but certs, binary, and default config file
|
|
|
|
# ---
|
|
|
|
FROM scratch AS final
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2021-12-03 22:50:58 -05:00
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/bin/zot /usr/bin/zot
|
|
|
|
COPY --from=builder /go/src/github.com/project-zot/zot/config.yml /etc/zot/config.yml
|
2021-11-30 21:26:44 -05:00
|
|
|
ENTRYPOINT ["/usr/bin/zot"]
|
2021-01-26 17:26:18 -05:00
|
|
|
EXPOSE 5000
|
|
|
|
VOLUME ["/var/lib/registry"]
|
2021-09-23 14:32:25 -05:00
|
|
|
CMD ["serve", "/etc/zot/config.yml"]
|