# syntax=docker/dockerfile:1.3 #!BuildTag: suse/alp/workloads/distribution:3.0 #!BuildTag: suse/alp/workloads/distribution:3.0-%RELEASE% #!BuildTag: suse/alp/workloads/distribution:latest LABEL maintainer="Marco Varlese " # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=com.suse.alp.workloads.distribution LABEL org.opencontainers.image.title="Distribution registry Container Image" LABEL org.opencontainers.image.description="Distribution registry container based on BCI" LABEL org.opencontainers.image.version="3.0" LABEL org.opencontainers.image.url="https://gitea.opensuse.org/fcrozat/distributionr/" LABEL org.opencontainers.image.created="%BUILDTIME%" LABEL org.opensuse.reference="registry.opensuse.org/suse/alp/workloads/tumbleweed_containerfiles/suse/alp/workloads/distribution-3.0-%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL com.suse.eula="beta" LABEL com.suse.image-type="application" LABEL com.suse.release-stage="prototype" # endlabelprefix ARG BCI_MICRO=registry.suse.com/bci/bci-micro ARG BCI_GO=registry.suse.com/bci/golang ARG GO_VERSION=1.18 FROM $BCI_GO:$GO_VERSION AS base WORKDIR /src FROM base AS build ENV GO111MODULE=auto # no need for full static build on BCI ENV CGO_ENABLED=1 RUN --mount=type=bind,target=/src,rw \ --mount=type=cache,target=/root/.cache/go-build \ --mount=target=/go/pkg/mod,type=cache \ go build -o /go/bin/registry ./cmd/registry FROM $BCI_MICRO COPY cmd/registry/config-dev.yml /etc/docker/registry/config.yml COPY --from=build /go/bin/registry /bin/registry VOLUME ["/var/lib/registry"] EXPOSE 5000 ENTRYPOINT ["registry"] CMD ["serve", "/etc/docker/registry/config.yml"]