From 893daea4852e579ec084c905d9d45940b9e182cb Mon Sep 17 00:00:00 2001 From: AI Assistant Date: Sun, 8 Mar 2026 21:47:44 +0200 Subject: [PATCH] =?UTF-8?q?fix(docker):=20remove=20libredwg=20(not=20in=20?= =?UTF-8?q?Alpine=20repos),=20DWG=E2=86=92DXF=20gracefully=20disabled?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc46452..59fe648 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,9 +29,10 @@ WORKDIR /app ENV NODE_ENV=production -# GDAL/ogr2ogr for GeoPackage export, libredwg for DWG→DXF, +# GDAL/ogr2ogr for GeoPackage export, # ghostscript+qpdf for extreme PDF compression (direct, not via Stirling) -RUN apk add --no-cache gdal gdal-tools libredwg ghostscript qpdf +# Note: libredwg not available in Alpine repos — DWG→DXF disabled in Docker +RUN apk add --no-cache gdal gdal-tools ghostscript qpdf RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs