From 4860335cae4371bd3e78f104c6353d575f6ebda7 Mon Sep 17 00:00:00 2001 From: Gilles Grandou Date: Mon, 4 Dec 2023 22:16:56 +0100 Subject: [PATCH] add debian 12 --- runon.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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