diff options
author | Johan Euphrosine <proppy@google.com> | 2015-03-11 21:21:06 -0700 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2015-03-12 04:34:03 +0000 |
commit | 64711e4b8e682af6e804e79fd3529fc7de1c9137 (patch) | |
tree | 081a1e07379abeda6530e63a39854182ccedf6eb /content/docker.article | |
parent | 174a75682250cbad6f4b78e24b213171de62621e (diff) |
content/docker: update Dockerfile edit instructions
The outyet package already contains a `Dockerfile`.
Change-Id: I85ac3db2d80966db02d4d1ce9d2bcf2721f06016
Reviewed-on: https://go-review.googlesource.com/7460
Reviewed-by: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'content/docker.article')
-rw-r--r-- | content/docker.article | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/docker.article b/content/docker.article index 6d5727c..942bcf1 100644 --- a/content/docker.article +++ b/content/docker.article @@ -32,7 +32,7 @@ Use "go get" to fetch and install outyet in your * Write a Dockerfile -Create a file named `Dockerfile` in the `outyet` directory with the following contents: +Replace a file named `Dockerfile` in the `outyet` directory with the following contents: # Start from a Debian image with the latest version of Go installed # and a workspace (GOPATH) configured at /go. @@ -71,7 +71,7 @@ With the `onbuild` variant, the `Dockerfile` is much simpler: * Build and run the image -Invoke Docker from the package directory to build an image using the `Dockerfile`: +Invoke Docker from the `outyet` package directory to build an image using the `Dockerfile`: $ docker build -t outyet . |