1
0
Fork 1
mirror of https://example.com synced 2024-11-22 06:46:40 +09:00

fix: install the latest glibc from experimental repository in Docker

This commit is contained in:
naskya 2023-12-27 16:08:41 +09:00
parent 4fa442e3d4
commit 07c905c33e
Signed by: naskya
GPG key ID: 712D413B3A9FED5C

View file

@ -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 . ./