ARG BASE_IMAGE=m1k1o/neko:base FROM $BASE_IMAGE # # install desktop and other programs RUN set -eux; apt-get update; \ apt-get install -y --no-install-recommends xfce4 xfce4-terminal sudo; \ apt-get install -y wget curl gnupg lsb-release apt-transport-https ca-certificates \ git nano sxiv mpv rsync RUN set -eux; \ # ## yt-dlp curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /bin/yt-dlp; \ chmod a+rx /bin/yt-dlp; \ # # add user to sudoers usermod -aG sudo neko; \ echo "neko:neko" | chpasswd; \ echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers; \ # # Install Librewolf curl https://deb.librewolf.net/keyring.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/librewolf.gpg >/dev/null; \ echo "deb [arch=amd64 signed-by=/usr/share/keyrings/librewolf.gpg] http://deb.librewolf.net $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/librewolf.list; \ apt-get update; \ apt-get install librewolf -y; \ # clean up apt-get clean -y; \ rm -rf /var/lib/apt/lists/* /var/cache/apt/* # # copy dotfiles COPY dots /dots # # copy configuation files COPY supervisord.conf /etc/neko/supervisord/xfce.conf