This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM rockylinux:8 AS builder | |
RUN dnf install -y 'dnf-command(builddep)' 'dnf-command(config-manager)' | |
RUN dnf config-manager --set-enabled powertools | |
RUN dnf builddep -y kernel | |
FROM builder | |
WORKDIR /tmp | |
RUN dnf download --source kernel && rpm -ivh kernel*.src.rpm |
OlderNewer