1
0
mirror of synced 2026-01-07 00:01:39 -05:00

Fix abrupt sentence ending

This commit is contained in:
Riaan du Plessis
2023-01-29 15:41:25 +02:00
committed by GitHub
parent 3fe05d9f94
commit 73b6b8a3ff

View File

@@ -25,7 +25,7 @@ Some Docker instructions interact with GitHub Actions, and an action's metadata
### USER
Docker actions must be run by the default Docker user (root). Do not use the `USER` instruction in your `Dockerfile`, because you won't be able to access the `GITHUB_WORKSPACE`. For more information, see "[Variables](/actions/learn-github-actions/variables#default-environment-variables)" and [USER reference](https://docs.docker.com/engine/reference/builder/#user) in the Docker documentation.
Docker actions must be run by the default Docker user (root). Do not use the `USER` instruction in your `Dockerfile`, because you won't be able to access the `GITHUB_WORKSPACE` directory. For more information, see "[Variables](/actions/learn-github-actions/variables#default-environment-variables)" and [USER reference](https://docs.docker.com/engine/reference/builder/#user) in the Docker documentation.
### FROM