From 002ae8b91afa458279762ec6863cd4fca8c6bafa Mon Sep 17 00:00:00 2001 From: Yamila Moreno Date: Wed, 7 May 2025 18:08:20 +0200 Subject: [PATCH] :whale: Update docker images to ubuntu 24.04 --- CHANGES.md | 1 + docker/images/Dockerfile.backend | 2 +- docker/images/Dockerfile.exporter | 7 +++---- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8612f17beb..8ce7064540 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -41,6 +41,7 @@ root. ### :sparkles: New features - Optimize profile setup flow for better user experience [Taiga #10028](https://tree.taiga.io/project/penpot/us/10028) +- Update base image for Docker Backend and Exporter to Ubuntu 24.04 ### :bug: Bugs fixed diff --git a/docker/images/Dockerfile.backend b/docker/images/Dockerfile.backend index 7f046806ba..a5bd099d45 100644 --- a/docker/images/Dockerfile.backend +++ b/docker/images/Dockerfile.backend @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 LABEL maintainer="Penpot " ENV LANG='en_US.UTF-8' \ diff --git a/docker/images/Dockerfile.exporter b/docker/images/Dockerfile.exporter index 3b62176fcd..57ad012f7e 100644 --- a/docker/images/Dockerfile.exporter +++ b/docker/images/Dockerfile.exporter @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 LABEL maintainer="Penpot " ENV LANG=en_US.UTF-8 \ @@ -32,8 +32,8 @@ RUN set -ex; \ netpbm \ poppler-utils \ potrace \ - gconf-service \ - libasound2 \ + dconf-service \ + libasound2t64 \ libatk1.0-0 \ libatk-bridge2.0-0 \ libatomic1 \ @@ -43,7 +43,6 @@ RUN set -ex; \ libexpat1 \ libfontconfig1 \ libgcc1 \ - libgconf-2-4 \ libgdk-pixbuf2.0-0 \ libglib2.0-0 \ libgtk-3-0 \