diff --git a/Containerfile b/Containerfile index d32e28a..6247b2b 100644 --- a/Containerfile +++ b/Containerfile @@ -4,6 +4,8 @@ FROM docker.io/library/archlinux:latest ENV NVIDIA_VISIBLE_DEVICES all ENV NVIDIA_DRIVER_CAPABILITIES all +COPY system_files / + # Pacman Initialization # Create build user RUN sed -i 's/#Color/Color/g' /etc/pacman.conf && \ @@ -87,8 +89,6 @@ RUN git clone https://aur.archlinux.org/paru-bin.git --single-branch && \ USER root WORKDIR / -COPY bazzite-steam-runtime /usr/bin/bazzite-steam-runtime - # Cleanup # Native march & tune. This is a gaming image and not something a user is going to compile things in with the intent to share. # We do this last because it'll only apply to updates the user makes going forward. We don't want to optimize for the build host's environment. diff --git a/bazzite-steam-runtime b/system_files/usr/bin/bazzite-steam-runtime similarity index 100% rename from bazzite-steam-runtime rename to system_files/usr/bin/bazzite-steam-runtime