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 ```