Add docker build system

This commit is contained in:
2025-11-19 16:44:19 +01:00
parent 78177c0a07
commit f4b474f0b9
10 changed files with 27 additions and 244 deletions

17
docker/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM fedora:41
RUN dnf install -y \
gcc \
gcc-c++ \
make \
nasm \
python3 \
git \
qemu-system-x86 \
wget \
meson \
&& dnf clean all
WORKDIR /workspace
CMD ["bash", "-c", "/workspace/scripts/build-picolibc.sh && /workspace/scripts/build-kernel.sh"]