From 88163a954fdecbc86fc68d3a17ad93671c74ad65 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 26 Feb 2025 02:32:48 +0930 Subject: [PATCH] feat(docker): Upgrade system packages on build ref: #650 --- dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfile b/dockerfile index ed9ea00d..eb113034 100644 --- a/dockerfile +++ b/dockerfile @@ -127,6 +127,7 @@ RUN pip --disable-pip-version-check list --outdated --format=json | \ python -c "import json, sys; print('\n'.join([x['name'] for x in json.load(sys.stdin)]))" | \ xargs -n1 pip install --no-cache-dir -U; \ apk update --no-cache; \ + apk upgrade --no-cache; \ apk add --no-cache \ mariadb-client \ mariadb-dev \