FIPS
This example shows how to build a Kairos image with FIPS support.
Use the --fips flag in the kairos-init install stage.
FROM ubuntu:24.04
FROM quay.io/kairos/kairos-init:v0.6.2 AS kairos-init
ARG VERSION=v1.0.0
RUN \
/kairos-init -l debug -s install --version "${VERSION}" --fips && \
/kairos-init -l debug -s init --version "${VERSION}" --fips
Build the image:
docker build -t my-kairos-fips:v1.0.0 .
For full flag reference, see Kairos Factory.