From e298295e81cec9cb019367f1be8b934ad05c5226 Mon Sep 17 00:00:00 2001 From: Ramiro Aparicio Date: Thu, 4 Dec 2025 01:01:03 +0100 Subject: [PATCH] Install intl PHP extension in Dockerfile Added installation of intl extension in Dockerfile. --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index aba3f90..0f6895e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,11 @@ ENV TRMNL_LIQUID_ENABLED=1 # Switch to the root user so we can do root things USER root +# Install intl +RUN apk add --no-cache icu-dev zlib-dev \ + && docker-php-ext-install intl \ + && apk del icu-dev zlib-dev + COPY --chown=www-data:www-data --from=bnussbau/trmnl-liquid-cli:0.1.0 /usr/local/bin/trmnl-liquid-cli /usr/local/bin/ # Set the working directory