From cc652dc5af065ef98d378c90d2f93e1cc603254f Mon Sep 17 00:00:00 2001 From: AI Assistant Date: Mon, 9 Mar 2026 10:55:39 +0200 Subject: [PATCH] fix(dwg): enable universe repo for libredwg-tools in Ubuntu 24.04 Co-Authored-By: Claude Opus 4.6 --- dwg2dxf-api/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dwg2dxf-api/Dockerfile b/dwg2dxf-api/Dockerfile index 6a7c913..e2a2373 100644 --- a/dwg2dxf-api/Dockerfile +++ b/dwg2dxf-api/Dockerfile @@ -1,5 +1,8 @@ FROM ubuntu:24.04 +# Enable universe repo (libredwg-tools lives there) +RUN sed -i 's/Components: main/Components: main universe/' /etc/apt/sources.list.d/ubuntu.sources + RUN apt-get update && \ apt-get install -y --no-install-recommends \ python3 python3-pip libredwg-tools && \