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:
parent
4fa442e3d4
commit
07c905c33e
1 changed files with 4 additions and 1 deletions
|
@ -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 . ./
|
||||
|
||||
|
|
Loading…
Reference in a new issue