summaryrefslogtreecommitdiffstats
path: root/test/container/Dockerfile-alpine
diff options
context:
space:
mode:
Diffstat (limited to 'test/container/Dockerfile-alpine')
-rw-r--r--test/container/Dockerfile-alpine62
1 files changed, 62 insertions, 0 deletions
diff --git a/test/container/Dockerfile-alpine b/test/container/Dockerfile-alpine
new file mode 100644
index 0000000..4f28c95
--- /dev/null
+++ b/test/container/Dockerfile-alpine
@@ -0,0 +1,62 @@
+FROM docker.io/alpine:latest
+
+RUN apk add --no-cache \
+ alpine-sdk \
+ asciidoc \
+ bash \
+ binutils \
+ blkid \
+ btrfs-progs \
+ busybox \
+ bzip2 \
+ cargo \
+ coreutils \
+ cpio \
+ cryptsetup \
+ curl \
+ dash \
+ dhclient \
+ dmraid \
+ dosfstools \
+ e2fsprogs \
+ eudev \
+ findmnt \
+ gawk \
+ git \
+ gpg \
+ grep \
+ iputils \
+ kbd \
+ kmod-dev \
+ linux-virt \
+ losetup \
+ lvm2 \
+ make \
+ mdadm \
+ mtools \
+ multipath-tools \
+ musl-fts-dev \
+ nbd \
+ ntfs-3g-progs \
+ open-iscsi \
+ openssh \
+ parted \
+ partx \
+ pigz \
+ procps \
+ qemu-img \
+ qemu-system-x86_64 \
+ rng-tools \
+ sed \
+ sfdisk \
+ squashfs-tools \
+ sudo \
+ util-linux-misc \
+ xz
+
+RUN \
+ cp /usr/lib/udev/rules.d/* /lib/udev/rules.d/ && \
+ ln -sf /sbin/poweroff /sbin/shutdown && \
+ ln -sf /usr/bin/dash /bin/dash && \
+ ln -sf /bin/sh /usr/bin/sh && \
+ ln -sf /boot/vmlinuz-virt /boot/vmlinuz-$(cd /lib/modules; ls -1 | tail -1)