From 837beda76b5631112faf82c00518cd556efd07df Mon Sep 17 00:00:00 2001 From: Anne Henmi <41210220+ahh-docker@users.noreply.github.com> Date: Tue, 27 Nov 2018 09:24:09 -0700 Subject: [PATCH] Update build_enhancements.md Capitalized headers. --- develop/develop-images/build_enhancements.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/develop/develop-images/build_enhancements.md b/develop/develop-images/build_enhancements.md index c1ae4de213..a5312fd5e2 100644 --- a/develop/develop-images/build_enhancements.md +++ b/develop/develop-images/build_enhancements.md @@ -176,15 +176,15 @@ Here is an example Dockerfile using SSH in the container: FROM alpine -# install ssh client and git +# Install ssh client and git RUN apk add --no-cache openssh-client git -# download public key for github.com +# Download public key for github.com RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts -# clone our private repository +# Clone private repository RUN --mount=type=ssh git clone git@github.com:myorg/myproject.git myproject ```