From ae60690bf56a42d16eb8bbbc0fcca2b94ec88197 Mon Sep 17 00:00:00 2001 From: Leon Wright Date: Mon, 6 May 2024 13:49:07 +0800 Subject: [PATCH] fix: Ubuntu 24.04 breaks build There are a number of changes within 24.04 which upset the apple cart, for now 22.04 is still supported for another year, so we can pin while we give ourselves some time to update things --- Dockerfile.metadata | 2 +- Dockerfile.netkan | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.metadata b/Dockerfile.metadata index 82f7e278a1..d51c1dee0d 100644 --- a/Dockerfile.metadata +++ b/Dockerfile.metadata @@ -1,5 +1,5 @@ # Everything we need in both the build and prod images -FROM ubuntu:latest as base +FROM ubuntu:22.04 as base # Don't prompt for time zone ENV DEBIAN_FRONTEND=noninteractive diff --git a/Dockerfile.netkan b/Dockerfile.netkan index 8aa88e48d1..eabe7ef667 100644 --- a/Dockerfile.netkan +++ b/Dockerfile.netkan @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM ubuntu:22.04 # Don't prompt for time zone ENV DEBIAN_FRONTEND=noninteractive