2018-10-16 00:46:01 +02:00
|
|
|
FROM golang:1.11-alpine AS build
|
2015-06-01 12:15:53 +02:00
|
|
|
|
2015-01-21 04:04:19 +01:00
|
|
|
ENV DISTRIBUTION_DIR /go/src/github.com/docker/distribution
|
2016-03-11 01:46:43 +01:00
|
|
|
ENV DOCKER_BUILDTAGS include_oss include_gcs
|
2015-01-30 00:37:22 +01:00
|
|
|
|
2017-05-23 10:58:05 +02:00
|
|
|
ARG GOOS=linux
|
|
|
|
ARG GOARCH=amd64
|
2018-11-28 19:40:29 +01:00
|
|
|
ARG GOARM=6
|
2017-05-23 10:58:05 +02:00
|
|
|
|
2016-07-22 01:14:32 +02:00
|
|
|
RUN set -ex \
|
2018-10-16 00:46:01 +02:00
|
|
|
&& apk add --no-cache make git file
|
2016-07-22 01:14:32 +02:00
|
|
|
|
2015-01-21 04:04:19 +01:00
|
|
|
WORKDIR $DISTRIBUTION_DIR
|
|
|
|
COPY . $DISTRIBUTION_DIR
|
2018-10-16 00:46:01 +02:00
|
|
|
RUN CGO_ENABLED=0 make PREFIX=/go clean binaries && file ./bin/registry | grep "statically linked"
|
2014-12-11 00:57:41 +01:00
|
|
|
|
2018-10-16 00:46:01 +02:00
|
|
|
FROM alpine
|
|
|
|
COPY cmd/registry/config-dev.yml /etc/docker/registry/config.yml
|
|
|
|
COPY --from=build /go/src/github.com/docker/distribution/bin/registry /bin/registry
|
2015-06-11 06:24:16 +02:00
|
|
|
VOLUME ["/var/lib/registry"]
|
2014-12-11 00:57:41 +01:00
|
|
|
EXPOSE 5000
|
2015-04-06 16:05:11 +02:00
|
|
|
ENTRYPOINT ["registry"]
|
2016-01-19 23:26:15 +01:00
|
|
|
CMD ["serve", "/etc/docker/registry/config.yml"]
|