From 40a3170b848f325184fc66d2eb2769ff50a4f1cf Mon Sep 17 00:00:00 2001 From: Percs <83934299+Percslol@users.noreply.github.com> Date: Mon, 26 Aug 2024 19:45:36 -0500 Subject: [PATCH] split initial bootstrap command into multiple tasks in alpine x86 image --- x86_image_wizard/alpine/Dockerfile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/x86_image_wizard/alpine/Dockerfile b/x86_image_wizard/alpine/Dockerfile index 668d69af..530ec846 100644 --- a/x86_image_wizard/alpine/Dockerfile +++ b/x86_image_wizard/alpine/Dockerfile @@ -1,20 +1,20 @@ FROM i386/alpine:edge -RUN apk add --update \ - alpine-base openrc alpine-conf bash ncurses shadow curl \ +RUN apk add --update \ + alpine-base alpine-conf openrc bash ncurses shadow curl \ linux-lts linux-firmware-none linux-firmware-sb16 linux-headers \ gcc make gcompat musl-dev libx11-dev xinit \ - bind-tools \ - htop vim nano \ - && \ - setup-xorg-base xhost xterm xcalc xdotool xkill || true && \ - setup-devd mdevd || true && \ - touch /root/.Xdefaults && \ - rm /etc/motd /etc/issue && \ - setup-hostname anura && \ - passwd -d root && \ - chsh -s /bin/bash && \ - echo "host9p /root 9p defaults 0 0" >> /etc/fstab + curl bind-tools \ + htop vim nano + +RUN setup-xorg-base xhost xterm xcalc xdotool xkill || true +RUN setup-devd udev || true +RUN touch /root/.Xdefaults +RUN rm /etc/motd /etc/issue +RUN setup-hostname anura +RUN passwd -d root +RUN chsh -s /bin/bash +RUN echo "host9p /root 9p defaults 0 0" >> /etc/fstab ENV CACHE_BUST=123 COPY xorg.conf /etc/X11/