talos/website/content/docs/v0.11/Guides/customizing-the-kernel.md
Andrey Smirnov d9ba0fd016 docs: create v0.11 docs, promote v0.10 docs, add v0.10 AMIs
This makes v0.10 docs latest, v0.11 docs we generate to.

Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
2021-04-26 12:43:48 -07:00

21 lines
525 B
Markdown

---
title: "Customizing the Kernel"
description: ""
---
```docker
FROM scratch AS customization
COPY --from=<custom kernel image> /lib/modules /lib/modules
FROM docker.io/andrewrynhard/installer:latest
COPY --from=<custom kernel image> /boot/vmlinuz /usr/install/vmlinuz
```
```bash
docker build --build-arg RM="/lib/modules" -t talos-installer .
```
> Note: You can use the `--squash` flag to create smaller images.
Now that we have a custom installer we can build Talos for the specific platform we wish to deploy to.