Skip to content

Lacking documentation of Debian qualifiers of the images (was "docker-php-ext-install imap"-issue before) #1608

@joni1993

Description

@joni1993

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions