mirror of https://github.com/docker/docs.git
Add missing dot
The docker build commands are missing the dot to specify the Dockerfile in the current directory.
This commit is contained in:
parent
9e5f9d7be2
commit
61b6244d9b
|
@ -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).
|
||||
|
|
Loading…
Reference in New Issue