From bb8a8dd7de2de88f152fa078af9af52be56d2c33 Mon Sep 17 00:00:00 2001 From: rgaudin Date: Tue, 29 Oct 2024 14:33:42 +0000 Subject: [PATCH] Add patch util and use non-slim - Using a slim image on a maintenance image has little value and while those removed tools are typicaly those we may want to use in maintenance scenarios - Adding patch util for kiwix-serve template update job --- maintenance/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/maintenance/Dockerfile b/maintenance/Dockerfile index 5d667697..e0efa6d2 100644 --- a/maintenance/Dockerfile +++ b/maintenance/Dockerfile @@ -1,5 +1,5 @@ -FROM docker.io/library/python:3.12-slim-bookworm +FROM docker.io/library/python:3.12-bookworm LABEL org.opencontainers.image.source https://github.com/kiwix/container-images # debian-slim based python container with libzim @@ -12,6 +12,7 @@ RUN apt-get update -y \ libmagic1 \ libcairo2 \ curl \ + patch \ openssh-server \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \