We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a22ed commit 2d7018eCopy full SHA for 2d7018e
1 file changed
registry/Dockerfile
@@ -13,11 +13,10 @@ RUN wget -qO- https://raw.githubusercontent.com/pypa/pip/1.5.5/contrib/get-pip.p
13
RUN useradd -s /bin/bash registry
14
15
# add the docker registry source from github
16
-RUN git clone https://github.com/deis/docker-registry /docker-registry
17
-RUN chown -R registry:registry /docker-registry
18
-
19
-# lock the registry version to a tag
20
-RUN cd /docker-registry && git checkout repository-import
+RUN git clone https://github.com/deis/docker-registry /docker-registry && \
+ cd /docker-registry && \
+ git checkout fc3b691 && \
+ chown -R registry:registry /docker-registry
21
22
# install boto configuration
23
RUN cp /docker-registry/config/boto.cfg /etc/boto.cfg
0 commit comments