feab4aafbc
- Includes a change in the command to run the registry. The registry server itself is now started up as a subcommand. - Includes changes to the high level interfaces to support enumeration of various registry objects. Signed-off-by: Andrew T Nguyen <andrew.nguyen@docker.com>
19 lines
572 B
Docker
19 lines
572 B
Docker
FROM golang:1.5.3
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y librados-dev apache2-utils && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV DISTRIBUTION_DIR /go/src/github.com/docker/distribution
|
|
ENV GOPATH $DISTRIBUTION_DIR/Godeps/_workspace:$GOPATH
|
|
ENV DOCKER_BUILDTAGS include_rados include_oss include_gcs
|
|
|
|
WORKDIR $DISTRIBUTION_DIR
|
|
COPY . $DISTRIBUTION_DIR
|
|
COPY cmd/registry/config-dev.yml /etc/docker/registry/config.yml
|
|
RUN make PREFIX=/go clean binaries
|
|
|
|
VOLUME ["/var/lib/registry"]
|
|
EXPOSE 5000
|
|
ENTRYPOINT ["registry"]
|
|
CMD ["serve", "/etc/docker/registry/config.yml"]
|