Skip to content

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Flatcar Linux in an OCI image

Enabled services:

Examples:

Customization

In order to add your own SSH key into the mix, you can build with:

$ make build GITHUB_USER=your-handle
...

If make is not your thing:

FROM ghcr.io/luzilla/flatcar:stable

ADD https://github.com/${GITHUB_USER}.keys /home/core/keys
RUN mkdir -p /home/core/.ssh/ \
    && cat /home/core/keys >> /home/core/.ssh/authorized_keys \
    && rm /home/core/keys \
    && chmod 0700 /home/core/.ssh/ \
    && chown core:core /home/core/.ssh \