From e30ed2ae5625c45e6e84f82a4f5ce8089703a1f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Mon, 23 Oct 2017 20:39:11 +0200 Subject: [PATCH] A basic docker image for compiling and emulating an x86_64 os --- toolchain/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 toolchain/Dockerfile diff --git a/toolchain/Dockerfile b/toolchain/Dockerfile new file mode 100644 index 0000000..f852b41 --- /dev/null +++ b/toolchain/Dockerfile @@ -0,0 +1,8 @@ +FROM alpine + +RUN apk --update add make binutils gcc && \ + apk add grub-bios xorriso qemu-system-x86_64 gdb && \ + rm -rf /var/cache/apk/* + +ENV PATH "/opt/toolchain:$PATH" +WORKDIR /opt