From 07c905c33ef364e3b5f51e874bbb6860f211a39f Mon Sep 17 00:00:00 2001 From: naskya Date: Wed, 27 Dec 2023 16:08:41 +0900 Subject: [PATCH] fix: install the latest glibc from experimental repository in Docker --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 783cd1bbf..3d7476cb4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,10 @@ WORKDIR /firefish # Install runtime dependencies ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get install -y --no-install-recommends zip unzip tini ffmpeg +RUN apt-get update && apt-get install -y --no-install-recommends zip unzip tini ffmpeg ca-certificates + +RUN echo 'deb https://deb.debian.org/debian experimental main' | tee /etc/apt/sources.list +RUN apt-get update && apt-get --target-release experimental install -y --no-install-recommends libc6 COPY . ./