Separate docker's args

This commit is contained in:
Denis Kolodin 2016-10-16 12:23:27 +03:00 committed by Devin Donnelly
parent 025de2fa3c
commit 4626158349
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ We can now build and publish a new container image to the registry with an incre
```shell ```shell
docker build -t gcr.io/$PROJECT_ID/hello-node:v2 . docker build -t gcr.io/$PROJECT_ID/hello-node:v2 .
gcloud docker push gcr.io/$PROJECT_ID/hello-node:v2 gcloud docker -- push gcr.io/$PROJECT_ID/hello-node:v2
``` ```
Building and pushing this updated image should be much quicker as we take full advantage of the Docker cache. Building and pushing this updated image should be much quicker as we take full advantage of the Docker cache.