From 97472677160076c99849164fb3f0f7e2285e9bd6 Mon Sep 17 00:00:00 2001 From: naskya Date: Wed, 14 Feb 2024 02:39:41 +0900 Subject: [PATCH] fix (container): install the latest glibc --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 954644a0c6..cc92d3a643 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,10 @@ FROM docker.io/node:20-slim WORKDIR /firefish # Install runtime dependencies -RUN apt-get update && DEBIAN_FRONTEND='noninteractive' apt-get install -y --no-install-recommends zip unzip tini ffmpeg +RUN apt-get update && DEBIAN_FRONTEND='noninteractive' 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 && DEBIAN_FRONTEND='noninteractive' apt-get --target-release experimental install -y --no-install-recommends libc6 COPY . ./