From 2cac43619faeaf32e7442765256e5bb57e1d7145 Mon Sep 17 00:00:00 2001 From: Liubov Grinkevich <33186227+luba239@users.noreply.github.com> Date: Thu, 16 Apr 2020 15:35:50 +0300 Subject: [PATCH] Fix line endings in shell script Add escapes to line endings, remove extra quote --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 726dc2708..9a17c2ec0 100644 --- a/README.md +++ b/README.md @@ -270,9 +270,9 @@ docker run \ -v "$HOME"/.config/gcloud:/root/.config/gcloud \ -v /path/to/context:/workspace \ gcr.io/kaniko-project/executor:latest \ - --dockerfile /workspace/Dockerfile - --destination "gcr.io/$PROJECT_ID/$IMAGE_NAME:$TAG" - --context dir:///workspace/" + --dockerfile /workspace/Dockerfile \ + --destination "gcr.io/$PROJECT_ID/$IMAGE_NAME:$TAG" \ + --context dir:///workspace/ ``` There is also a utility script [`run_in_docker.sh`](./run_in_docker.sh) that can be used as follows: