diff --git a/Dockerfile b/Dockerfile index c039177..d19858c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,12 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \ libcurl4-openssl-dev \ libonig-dev \ libgd-dev \ + libzip-dev \ + libicu-dev \ tesseract-ocr \ tesseract-ocr-ita \ tesseract-ocr-eng \ - && docker-php-ext-install pdo_sqlite curl mbstring gd \ + && docker-php-ext-install pdo_sqlite curl mbstring gd zip intl \ && apt-get clean && rm -rf /var/lib/apt/lists/* # Enable Apache mod_rewrite and mod_headers @@ -45,4 +47,4 @@ EXPOSE 80 HEALTHCHECK --interval=30s --timeout=5s --retries=3 \ CMD curl -f http://localhost/ || exit 1 -CMD ["apache2-foreground"] +CMD ["apache2-foreground"] \ No newline at end of file