Merge pull request #149 from kristof-mattei/add-debian-trixie

Add Debian Trixie (testing)
This commit is contained in:
yosifkit 2023-08-25 10:07:04 -07:00 committed by GitHub
commit fdfe65ea07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 107 additions and 0 deletions

View File

@ -15,6 +15,7 @@ RUN set -eux; \
"buster", # no sq
"jammy", # 0.25
"focal", # no sq
"trixie", # no sq, https://github.com/docker-library/buildpack-deps/pull/149#issuecomment-1692238397
empty # trailing comma
] | index(env.codename) then "" else ( -}}
sq \

63
debian/trixie/Dockerfile generated vendored Normal file
View File

@ -0,0 +1,63 @@
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
FROM buildpack-deps:trixie-scm
RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
dpkg-dev \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libdb-dev \
libevent-dev \
libffi-dev \
libgdbm-dev \
libglib2.0-dev \
libgmp-dev \
libjpeg-dev \
libkrb5-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmaxminddb-dev \
libncurses5-dev \
libncursesw5-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
unzip \
xz-utils \
zlib1g-dev \
\
# https://lists.debian.org/debian-devel-announce/2016/09/msg00000.html
$( \
# if we use just "apt-cache show" here, it returns zero because "Can't select versions from package 'libmysqlclient-dev' as it is purely virtual", hence the pipe to grep
if apt-cache show 'default-libmysqlclient-dev' 2>/dev/null | grep -q '^Version:'; then \
echo 'default-libmysqlclient-dev'; \
else \
echo 'libmysqlclient-dev'; \
fi \
) \
; \
rm -rf /var/lib/apt/lists/*

18
debian/trixie/curl/Dockerfile generated vendored Normal file
View File

@ -0,0 +1,18 @@
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
FROM debian:trixie
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
ca-certificates \
curl \
gnupg \
netbase \
wget \
; \
rm -rf /var/lib/apt/lists/*

17
debian/trixie/scm/Dockerfile generated vendored Normal file
View File

@ -0,0 +1,17 @@
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
FROM buildpack-deps:trixie-curl
# procps is very common in build systems, and is a reasonably small package
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
mercurial \
openssh-client \
subversion \
\
procps \
&& rm -rf /var/lib/apt/lists/*

View File

@ -31,6 +31,14 @@
""
]
},
"debian/trixie": {
"suite": "testing",
"variants": [
"curl",
"scm",
""
]
},
"ubuntu/focal": {
"suite": "20.04",
"variants": [