This Dockerfile: ``` FROM php:8.2-apache # Instalar extensiones PHP necesarias RUN apt-get update && apt-get install -y \ libc-client-dev \ libkrb5-dev \ libssl-dev \ && docker-php-ext-configure imap --with-kerberos --with-imap-ssl \ && docker-php-ext-install imap \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* ``` Last week it generate the image correctly, now: > 1.571 E: Unable to locate package libc-client-dev