Add missing dot

The docker build commands are missing the dot to specify the Dockerfile in the current directory.
This commit is contained in:
Kevin Tang 2016-10-25 15:00:38 -04:00 committed by GitHub
parent 9e5f9d7be2
commit 61b6244d9b
1 changed files with 2 additions and 2 deletions

View File

@ -42,13 +42,13 @@ Next, we have to build this application to create an image. Run the following co
**Python quickstart**
```bash
$ docker build --tag quickstart-python
$ docker build --tag quickstart-python .
```
**Go quickstart**
```bash
$ docker build --tag quickstart-go
$ docker build --tag quickstart-go .
```
Next, we [Push the Docker image to Docker Cloud's Registry](4_push_to_cloud_registry.md).