diff --git a/runon.conf b/runon.conf index 5fadb74..534e67f 100644 --- a/runon.conf +++ b/runon.conf @@ -82,6 +82,18 @@ dockerfile = pkginstall = RUN apt-get -y install {} packages = xterm x11-apps vim-gtk3 git build-essential python3 bash-completion +[debian12] +dockerfile = + FROM debian:12 + ARG DEBIAN_FRONTEND=noninteractive + RUN apt-get update + RUN apt-get -y install apt-utils + RUN apt-get -y install sudo + RUN echo "Defaults lecture = never" >> /etc/sudoers + RUN echo "ALL ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers +pkginstall = RUN apt-get -y install {} +packages = xterm x11-apps vim-gtk3 git build-essential python3 bash-completion + [ubuntu20.04] dockerfile = FROM ubuntu:20.04