mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-06-07 17:31:35 +00:00
Small readme edit, fix ncc dependency
Signed-off-by: Tim Etchells <tetchell@redhat.com>
This commit is contained in:
parent
236b973ed2
commit
4373525da7
5 changed files with 18 additions and 7 deletions
14
README.md
14
README.md
|
@ -1,5 +1,5 @@
|
|||
# buildah
|
||||
|
||||
[](https://github.com/redhat-actions/buildah-action/actions?query=workflow%3A%22Verify+Bundle%22)
|
||||
[](https://github.com/redhat-actions/buildah-action/tags)
|
||||
[](./LICENSE)
|
||||
[](./dist)
|
||||
|
@ -45,7 +45,7 @@ Note that GitHub's [Ubuntu Environments](https://github.com/actions/virtual-envi
|
|||
<tr>
|
||||
<td>dockerfiles</td>
|
||||
<td>No</td>
|
||||
<td>The list of Dockerfile paths to perform a build using docker instructions. This is a multiline input if you wish to add multiple Dockerfiles.
|
||||
<td>The list of Dockerfile paths to perform a build using docker instructions. This is a multiline input to allow multiple Dockerfiles.
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -68,8 +68,11 @@ Note that GitHub's [Ubuntu Environments](https://github.com/actions/virtual-envi
|
|||
<tr>
|
||||
<td>entrypoint</td>
|
||||
<td>No</td>
|
||||
<td>The entry point to set for the container. Can split arguments across multiple lines if desired.
|
||||
<pre>entrypoint: java -jar spring-petclinic-2.3.0.BUILD-SNAPSHOT.jar</pre>
|
||||
<td>The entry point to set for the container. This is a multiline input; split arguments across lines.
|
||||
<pre>entrypoint: |
|
||||
java
|
||||
-jar
|
||||
spring-petclinic-2.3.0.BUILD-SNAPSHOT.jar</pre>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -139,7 +142,8 @@ Do not set `dockerfiles` if you are doing a build from scratch, or a docker buil
|
|||
- `content` to copy into the new image
|
||||
- In a Dockerfile, this would be `COPY` directives.
|
||||
- `entrypoint` so the container knows what command to run.
|
||||
- All other optional configuration inputs.
|
||||
- In a Dockerfile, this would be the `ENTRYPOINT`.
|
||||
- All other optional configuration inputs, such as `port`, `envs`, and `workdir`.
|
||||
|
||||
Example of building a Spring Boot Java app image:
|
||||
```yaml
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue