11 lines
556 B
Plaintext
11 lines
556 B
Plaintext
FROM alpine:3.12.0
|
|
RUN echo "http://alpine.42.fr/v3.12/main" > /etc/apk/repositories
|
|
RUN echo "http://alpine.42.fr/v3.12/community" >> /etc/apk/repositories
|
|
RUN apk --no-cache update
|
|
RUN apk --no-cache upgrade
|
|
RUN apk --no-cache add font-noto git gcc make qemu qemu-system-i386 qemu-system-x86_64 sed gdb ovmf tar wget gzip indent binutils hexdump dos2unix xxd xz tmux git musl-dev gnome-terminal spice-gtk spice-gtk-tools python2 cramfs
|
|
RUN mkdir -p /usr/share/qemu/
|
|
RUN ln -s /usr/share/OVMF/OVMF.fd /usr/share/qemu/OVMF.fd
|
|
RUN mkdir /data
|
|
WORKDIR /data
|