A basic docker image for compiling and emulating an x86_64 os

This commit is contained in:
Thomas Lovén 2017-10-23 20:39:11 +02:00
parent ffe5d3dfe7
commit e30ed2ae56

8
toolchain/Dockerfile Normal file
View File

@ -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