1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00

Minor code improvements.

- sti -> s2i
- fix a couple of typos
- remove useless fmt.Sprintf() usage
- use api.Assemble constant
- UploadToContainer: rename argument
- docs/cli.md: correct the number of log levels
- docs/debugging-s2i.md: fix a typo
This commit is contained in:
Slava Semushin
2016-06-22 14:17:14 +02:00
parent d78b05bab6
commit 138e6924ca
12 changed files with 18 additions and 18 deletions

View File

@@ -86,7 +86,7 @@ Properly reference the script location with the methods described in the above l
At various points when executing ONBUILD instructions (these are defined in the Dockerfile of the builder image you are using with s2i), if those instructions result in the need for root user access, but your builder image is not configured to run as root,
then attempts to reference that image in another Dockerfile will result in permission errors.
If you consider the following Dockerfile psuedo-example:
If you consider the following Dockerfile pseudo-example:
```
FROM foo