From 31d0f8ce0487719d206858a3e6ae696882e9fcc8 Mon Sep 17 00:00:00 2001 From: Carlos Pereira Atencio Date: Wed, 11 Dec 2024 22:20:56 +0000 Subject: [PATCH] Update base Ubuntu image from 16.04 to 18.04. As we need at least GLIBC 2.27 to be able to run GitHub actions inside. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28dcb70..eeaf051 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:16.04 +FROM ubuntu:18.04 LABEL org.opencontainers.image.description="Docker image to create Mu Editor AppImage builds." LABEL org.opencontainers.image.source="https://github.com/mu-editor/docker-mu-appimage"