From fe340c7c8424d019230761f382f2b812ef107d99 Mon Sep 17 00:00:00 2001 From: Facerafter <9007324+Facerafter@users.noreply.github.com> Date: Fri, 31 May 2024 21:29:58 +0200 Subject: [PATCH] add pygments via pip --- Dockerfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c1a5c8a..bce9c36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,9 +22,16 @@ RUN set -eux; \ liblua5.1-0 \ libzip4 \ s3cmd \ + python3 \ + python3-pip \ ; \ rm -rf /var/lib/apt/lists/* - + +# Install the Python packages we need +RUN set -eux; \ + pip3 install Pygments \ + ; + # Install the PHP extensions we need RUN set -eux; \ \