fix (container): install the latest glibc

This commit is contained in:
naskya 2024-02-14 02:39:41 +09:00
parent e2014f6642
commit 9747267716
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

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