This commit is contained in:
Stefan Scherer 2017-11-30 07:41:17 +01:00
Родитель 0412d5b63f
Коммит b50fbf6880
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5966AEAC37E957FA
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ The base image is the [official Go image](https://store.docker.com/images/golang
There's a single `CMD` instruction to build the latest version of the registry and copy the built files to a known output location:
```Dockerfile
CMD .\go get github.com/docker/distribution/cmd/registry ; `
CMD go get github.com/docker/distribution/cmd/registry ; `
cp \"$env:GOPATH\bin\registry.exe\" c:\out\ ; `
cp \"$env:GOPATH\src\github.com\docker\distribution\cmd\registry\config-example.yml\" c:\out\config.yml
```