From 12e5ec3a5ca8ebc16b73b5a33b18fb83853e272e Mon Sep 17 00:00:00 2001 From: Mehul Anshumali Date: Sun, 11 Jan 2026 19:26:20 +0530 Subject: [PATCH] fix(docker): add python3-tinycss2 for Inkscape DXF export Adds missing python3-tinycss2 dependency required by Inkscape's DXF export extension when converting PNG files to DXF format. The tinycss2 module is imported by inkex which is used by Inkscape's dxf12_outlines.py extension script. Fixes #494 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 899802f..4afb7ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,6 +68,7 @@ RUN apt-get update && apt-get install -y \ poppler-utils \ potrace \ python3-numpy \ + python3-tinycss2 \ resvg \ texlive \ texlive-fonts-recommended \