diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..6297b38db --- /dev/null +++ b/Dockerfile @@ -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 \ No newline at end of file