⬆️ Upgrade imagemagick version and base image to ubuntu 26.04

This commit is contained in:
David Barragán Merino 2026-06-04 16:51:10 +02:00 committed by Andrey Antukh
parent 575bed5c6e
commit 3f3a52a098
2 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
FROM ubuntu:24.04
FROM ubuntu:26.04
LABEL maintainer="Penpot <docker@penpot.app>"
ENV LANG='C.UTF-8' \
@ -6,7 +6,7 @@ ENV LANG='C.UTF-8' \
DEBIAN_FRONTEND=noninteractive \
TZ=Etc/UTC
ARG IMAGEMAGICK_VERSION=7.1.2-13
ARG IMAGEMAGICK_VERSION=7.1.2-24
RUN set -e; \
apt-get -qq update; \
@ -79,13 +79,12 @@ RUN set -e; \
libopenjp2-7 \
libpng16-16 \
librsvg2-2 \
libxml2 \
libtiff6 \
libwebp7 \
libwebpdemux2 \
libwebpmux3 \
libxml2 \
libzip4t64 \
libxml2-16 \
libzip5 \
libzstd1 \
;\
apt-get -qqy clean; \

View File

@ -59,7 +59,7 @@ PENPOT_PORT_BASE_MDTS=${MDTS_EXTERNAL_PORT:?missing in defaults.env}
export CURRENT_USER_ID=$(id -u);
export CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD);
export IMAGEMAGICK_VERSION=7.1.2-13
export IMAGEMAGICK_VERSION=7.1.2-24
# Safe directory to avoid ownership errors with Git
git config --global --add safe.directory /home/penpot/penpot || true