blob: 1a2ecaf421f323b3760ac4d468af94fed390c0b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM fedora:33
RUN dnf install -y qemu-system-aarch64 gzip cpio wget
WORKDIR /workdir
RUN wget -4 http://dl-cdn.alpinelinux.org/alpine/edge/releases/aarch64/netboot/vmlinuz-lts
RUN wget -4 http://dl-cdn.alpinelinux.org/alpine/edge/releases/aarch64/netboot/initramfs-lts
COPY initramfs /workdir/initramfs
COPY test.sh /workdir/
CMD ./test.sh
|