initial commit: working prototype

This commit is contained in:
Tamás Gérczei 2018-04-20 07:07:17 +00:00
commit 609b3f6454
1 changed files with 26 additions and 0 deletions

26
Dockerfile Normal file
View File

@ -0,0 +1,26 @@
# Compile binaries
FROM arm32v6/golang:alpine as builder
ENV DISTRIBUTION_DIR /go/src/github.com/docker/distribution
ENV DOCKER_BUILDTAGS include_oss include_gcs
ARG VERSION=master
RUN set -ex \
&& apk add --no-cache --virtual .build-deps \
make \
git \
&& git clone -b $VERSION https://github.com/docker/distribution.git $DISTRIBUTION_DIR
WORKDIR $DISTRIBUTION_DIR
RUN mkdir -p /etc/docker/registry \
&& cp cmd/registry/config-dev.yml /etc/docker/registry/config.yml
RUN make PREFIX=/go clean binaries \
&& apk del --purge .build-deps
VOLUME ["/var/lib/registry"]
EXPOSE 5000
ENTRYPOINT ["/bin/registry"]
CMD ["serve", "/etc/docker/registry/config.yml"]