2018-05-14 16:41:15 +02:00
|
|
|
FROM golang:1.10-alpine
|
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
|
|
|
|
|
2016-07-22 01:14:32 +02:00
|
|
|
RUN set -ex \
|
|
|
|
&& apk add --no-cache make git
|
|
|
|
|
2015-01-21 04:04:19 +01:00
|
|
|
WORKDIR $DISTRIBUTION_DIR
|
|
|
|
COPY . $DISTRIBUTION_DIR
|
2015-08-10 23:30:29 +02:00
|
|
|
COPY cmd/registry/config-dev.yml /etc/docker/registry/config.yml
|
2016-04-08 17:55:11 +02:00
|
|
|
|
2015-01-30 00:37:22 +01:00
|
|
|
RUN make PREFIX=/go clean binaries
|
2014-12-11 00:57:41 +01:00
|
|
|
|
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"]
|