gpt4 book ai didi

docker:卡住库依赖项

转载 作者:行者123 更新时间:2023-12-01 06:06:33 25 4
gpt4 key购买 nike

我有以下 Docker 文件

FROM debian
MAINTAINER Me
ENV NODE_VERSION 6.2.2
RUN apt-get update \
&& apt-get install -y --force-yes --no-install-recommends \
build-essential \
ca-certificates \
git \
fonts-liberation \
libfreeimage3 \
imagemagick \
python \
python-numpy \
python-pip \
curl \
xsltproc \
xz-utils \
&& curl -L https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz | tar -xJ \
&& ln -s /node-v$NODE_VERSION-linux-x64/bin/node /usr/bin \
&& ln -s /node-v$NODE_VERSION-linux-x64/bin/npm /usr/bin \
&& curl -L http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz | tar -xJ \
&& ln -s /ffmpeg-*/ffm* /usr/bin \
&& pip install moviepy \
&& apt-get remove -y \
python-pip \
curl \
xz-utils \
&& rm -Rf /tmp/* \
&& rm -rf /var/lib/apt/lists/*

在执行 apt-get install 时,卡住库依赖项(例如 imagemagic、git 等)的正确方法是什么?

非常感谢任何建议

最佳答案

基于 How to tweak "dpkg -l" output - Ask Ubuntu :

dpkg-query --show -f='${binary:Package}=${Version} \\\n' build-essential \
ca-certificates \
git \
fonts-liberation \
libfreeimage3 \
imagemagick \
python \
python-numpy \
python-pip \
curl \
xsltproc \
xz-utils

在基于此 Dockerfile 的 docker 容器中运行此命令以获取要复制到 Dockerfile 中的文本。

关于docker:卡住库依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38200920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com