mirror of
https://github.com/distribution/distribution.git
synced 2025-08-31 06:34:11 +00:00
Initial Dockerfile for running registry
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM golang
|
||||
|
||||
COPY . /go/src/github.com/docker/docker-registry
|
||||
|
||||
# Fetch any dependencies to run the registry
|
||||
RUN go get github.com/docker/docker-registry
|
||||
RUN go install github.com/docker/docker-registry/cmd/registry
|
||||
|
||||
ENV CONFIG_PATH /etc/docker/registry/config.yml
|
||||
COPY ./cmd/registry/config.yml $CONFIG_PATH
|
||||
|
||||
EXPOSE 5000
|
||||
ENV PATH /go/bin
|
||||
CMD registry $CONFIG_PATH
|
Reference in New Issue
Block a user