refactor: purge the midstream repo content to only host the build artifacts, so only the redhat-distribution should remain

This commit is contained in:
Artemy 2025-08-13 10:19:14 +01:00
parent db484734b4
commit 9783b6a8a3

View file

@ -19,6 +19,7 @@ The Containerfile is auto-generated from a template. To generate it:
``` ```
This will: This will:
- Check for the llama CLI installation - Check for the llama CLI installation
- Generate dependencies using `llama stack build` - Generate dependencies using `llama stack build`
- Create a new `Containerfile` with the required dependencies - Create a new `Containerfile` with the required dependencies
@ -33,6 +34,7 @@ NEVER edit the generated `Containerfile` manually.
Once the Containerfile is generated, you can build the image using either Podman or Docker: Once the Containerfile is generated, you can build the image using either Podman or Docker:
### Using Podman build image for x86_64 ### Using Podman build image for x86_64
```bash ```bash
podman build --platform linux/amd64 -f redhat-distribution/Containerfile -t rh . podman build --platform linux/amd64 -f redhat-distribution/Containerfile -t rh .
``` ```