From b50fbf6880c2aad42547e23a1619064fa9478935 Mon Sep 17 00:00:00 2001 From: Stefan Scherer Date: Thu, 30 Nov 2017 07:41:17 +0100 Subject: [PATCH] Fix go get --- windows/registry/part-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/registry/part-1.md b/windows/registry/part-1.md index 7298052..04055f3 100644 --- a/windows/registry/part-1.md +++ b/windows/registry/part-1.md @@ -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 ```