add debian 12

This commit is contained in:
Gilles Grandou 2023-12-04 22:16:56 +01:00
parent 348eddd3da
commit 4860335cae
1 changed files with 12 additions and 0 deletions

View File

@ -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