From e362765b21216500d72225e0a4f198b8b7c70d8c Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 20 Feb 2026 15:50:06 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=92=EF=B8=8F(frontend)=20uninstall=20c?= =?UTF-8?q?url=20from=20the=20frontend=20production=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove unnecessary package to reduce image size and surface area. --- CHANGELOG.md | 1 + src/frontend/Dockerfile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d0b33f6..bc32c0d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to ### Changed - ♻️(frontend) replace custom reactions toolbar with react aria popover #985 +- 🔒️(frontend) uninstall curl from the frontend production image #987 ## [1.8.0] - 2026-02-20 diff --git a/src/frontend/Dockerfile b/src/frontend/Dockerfile index 535f35fa..5f2a9ded 100644 --- a/src/frontend/Dockerfile +++ b/src/frontend/Dockerfile @@ -43,7 +43,8 @@ RUN apk update && apk upgrade libssl3 \ libxml2>=2.12.7-r2 \ libxslt>=1.1.39-r2 \ libexpat>=2.7.2-r0 \ - libpng>=1.6.53-r0 + libpng>=1.6.53-r0 \ + && apk del curl USER nginx