🔒️(frontend) uninstall curl from the frontend production image

Remove unnecessary package to reduce image size and surface area.
This commit is contained in:
lebaudantoine
2026-02-20 15:50:06 +01:00
committed by aleb_the_flash
parent be79fdac80
commit e362765b21
2 changed files with 3 additions and 1 deletions

View File

@@ -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

View File

@@ -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