From c5df24099cd791d947042be77b483d106d764320 Mon Sep 17 00:00:00 2001 From: Olivier Date: Sun, 17 Jan 2021 16:01:58 +0000 Subject: [PATCH] Add Python 3 with PIL to image for image processing Signed-off-by: Olivier --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ff4a527..f76dd07 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM rust:1.49.0-slim # install needed APT packages, then clear out the cache to reduce image size bloat RUN apt-get -qq update && \ - apt-get -yqq install pkg-config nodejs npm git rsync && \ + apt-get -yqq install pkg-config nodejs npm git rsync python3 python3-pil && \ rm -r /var/cache/apt # install zola from source, then remove (heavy) cargo temporaries to reduce bloat