add ubuntu 22.04 container

This commit is contained in:
Gilles Grandou 2022-08-09 16:51:27 +02:00
parent e06365b387
commit 4298f5e237
1 changed files with 10 additions and 0 deletions

View File

@ -98,3 +98,13 @@ pkginstall = RUN apt-get -y install {}
packages = ksh csh xterm x11-apps build-essential git libgtk2.0 libgtk-3.0 bash-completion tcl environment-modules
[ubuntu22.04]
dockerfile =
FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get -y install apt-utils
RUN apt-get -y install sudo
pkginstall = RUN apt-get -y install {}
packages = ksh csh xterm x11-apps build-essential git libgtk2.0 libgtk-3.0 bash-completion tcl environment-modules