From 19563a614b200a38330196d6add9259e9e02bf4a Mon Sep 17 00:00:00 2001 From: Tee KOBAYASHI Date: Thu, 13 Jan 2022 21:02:55 +0900 Subject: [PATCH] docker image: Install python3-jsonschema --- scripts/setup-ubuntu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index 345e4dfb5..c4fa45bdd 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -199,6 +199,9 @@ PACKAGES+=" triehash" # Needed by aspell dictionaries. PACKAGES+=" aspell" +# Needed by package kphp. +PACKAGES+=" python3-jsonschema" + # Do not require sudo if already running as root. if [ "$(id -u)" = "0" ]; then SUDO=""