Update build_enhancements.md

Capitalized headers.
This commit is contained in:
Anne Henmi
2018-11-27 09:24:09 -07:00
committed by GitHub
parent 1085883701
commit 837beda76b

View File

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