Estou com o seguinte erro ao executar o código.
echo file_get_contents("zip://var/www/html/arquivos.zip#lista-cursos.txt");
Erro: Warning: file_get_contents(zip://var/www/html/arquivos.zip#lista-cursos.txt): Failed to open stream: operation failed in /var/www/html/leitor-zip.php on line 3
Estou usando uma ambiente em Docker
FROM php:8.1.5-apache
LABEL maintainer="Guilherme F Silveira"
WORKDIR /var/www/html
RUN apt-get update && \
apt-get install -y vim && \
apt-get install -y libzip-dev && \
apt-get install -y zip && \
docker-php-ext-install pdo pdo_mysql mysqli zip && \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
COPY . /var/www/html
EXPOSE 80
Obrigado.