tools/docker: drop EoL Dockerfiles

This commit is contained in:
Rudi Heitbaum 2024-01-17 10:07:27 +00:00
parent def73501b6
commit 37b4f16b21
3 changed files with 1 additions and 58 deletions

View File

@ -4,8 +4,7 @@
- Ubuntu
- focal (Ubuntu 20.04)
- jammy (Ubuntu 22.04)
- kinetic (Ubuntu 22.10)
- lunar (Ubuntu 23.04)
- noble (Ubuntu 24.04)
- Debian
- buster (Debian 10.0)
- sid (Debian unstable)

View File

@ -1,28 +0,0 @@
FROM ubuntu:kinetic
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y locales sudo \
&& rm -rf /var/lib/apt/lists/*
RUN locale-gen en_US.UTF-8 \
&& update-locale LANG=en_US.UTF-8 LANGUAGE=en_US:en
ENV LANG=en_US.UTF-8 \
LANGUAGE=en_US:en \
LC_ALL=en_US.UTF-8
RUN adduser --disabled-password --gecos '' docker \
&& adduser docker sudo \
&& echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
RUN apt-get update && apt-get install -y \
wget bash bc gcc sed patch patchutils tar bzip2 gzip xz-utils zstd perl gawk gperf zip \
unzip diffutils lzop make file g++ xfonts-utils xsltproc default-jre-headless python3 \
libc6-dev libncurses5-dev libjson-perl libxml-parser-perl libparse-yapp-perl rdfind \
golang-go git openssh-client \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
USER docker

View File

@ -1,28 +0,0 @@
FROM ubuntu:lunar
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y adduser locales sudo \
&& rm -rf /var/lib/apt/lists/*
RUN locale-gen en_US.UTF-8 \
&& update-locale LANG=en_US.UTF-8 LANGUAGE=en_US:en
ENV LANG=en_US.UTF-8 \
LANGUAGE=en_US:en \
LC_ALL=en_US.UTF-8
RUN adduser --disabled-password --gecos '' docker \
&& adduser docker sudo \
&& echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
RUN apt-get update && apt-get install -y \
wget bash bc gcc sed patch patchutils tar bzip2 gzip xz-utils zstd perl gawk gperf zip \
unzip diffutils lzop make file g++ xfonts-utils xsltproc default-jre-headless python3 \
libc6-dev libncurses5-dev libjson-perl libxml-parser-perl libparse-yapp-perl rdfind \
golang-go git openssh-client \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
USER docker