For a few days now i am unable to build an image based on php:8.2-fpm with imap support.
Up to now i used to have the following Dockerfile:
FROM php:8.2-fpm
ARG VERSION=dev
ARG DATE
RUN set -xe; \apt-get update && apt-get install -y \
libfreetype6-dev \
libjpeg-dev \
libpng-dev \
libwebp-dev \
libc-client-dev \
libkrb5-dev \
libzip-dev \
libxml2-dev \
gosu \
dumb-init \
--no-install-recommends \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install pdo_mysql -j$(nproc) gd \
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
&& docker-php-ext-install imap \
&& docker-php-ext-install bcmath \
&& docker-php-ext-install zip \
&& docker-php-ext-install soap \
&& docker-php-ext-enable pdo_mysql \
&& docker-php-source delete \
&& apt-get clean all \
&& rm -r /var/cache/* && rm -rf /var/lib/apt/lists/*
Recent builds are failing due to "E: Unable to locate package libc-client-dev".
Why is there a dedicated 8.2-fpm-trixie image if the 8.2-fpm also uses the trixie repository?