19 lines
404 B
Docker
Raw Normal View History

FROM openeuler-22.03-lts-sp3:latest
RUN dnf clean expire-cache
ENV SHELL=/bin/bash
2025-05-07 18:09:32 +08:00
RUN dnf install sudo -y
RUN echo "cd /work && bash build.sh \
2025-10-09 10:12:20 +08:00
--board \${board} \
-n \${name} \
-k \${kernel_url} \
-b \${branch} \
-c \${default_defconfig} \
-r \${repo_file} \
-s \${spec_param} \
--cores \${make_cores}" >> /start-build.sh
ENTRYPOINT ["/bin/bash", "/start-build.sh"]