From 5e98f4e78e14cb7e0805d99f5599a4e29ed4d4b0 Mon Sep 17 00:00:00 2001 From: Ben Kristinsson Date: Sun, 16 Jun 2024 01:03:58 +0200 Subject: [PATCH] build from ubuntu 22.04 to compile owntone for libavformat.so.58. If built on 24.04 then owntone cant load shared libraries: libavformat.so.60. Owntone is compiled to dynamically link (use shared library) libavformat. Ubuntu 24.04 has libavformat.so.70, Ubuntu 22.04 has libavformat.so.58 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2f7bd6d..41a25a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest as base +FROM ubuntu:22.04 as base MAINTAINER "ben " ENV DEBIAN_FRONTEND=noninteractive -- 2.40.1