summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-11-13 16:09:56 -0600
committerTom Rini <[email protected]>2025-11-26 09:39:42 -0600
commitbc4a1e56bfcdd70a5307c91c94dafcf6bb27da93 (patch)
treefd7071e61bb83f626372eb53593713486881cb06
parentbd19527c755963de9c1d231fdacd112e54f33480 (diff)
Dockerfile: Include python3-tk for FATtools
In some cases our tests for exFAT don't run because we fail to be able to create the underlying image. This is in turn because while creation of the image succeeds, it seems that some way of how we invoke FATtools wants to import tkinter, that fails and so the test stops there. Having tkinter available (and then presumably a fallback to non-GUI because it's not available) leads to the tests running as expected. Reviewed-by: Marek Vasut <[email protected]> Signed-off-by: Tom Rini <[email protected]>
-rw-r--r--tools/docker/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index 92be7f76341..f98b42e7357 100644
--- a/tools/docker/Dockerfile
+++ b/tools/docker/Dockerfile
@@ -126,6 +126,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
python3-pip \
python3-pyelftools \
python3-sphinx \
+ python3-tk \
python3-tomli \
python3-venv \
rpm2cpio \