如何在保留符号链接的同时在多阶段 Docker 构建的各个阶段之间复制库文件?
How to COPY library files between stages of a multi-stage Docker build while preserving symlinks?
我有一个 Docker 文件,它分为两阶段多阶段 docker 构建。第一阶段生成一个基本的 gcc 构建环境,其中编译了许多 C 和 C++ 库。第二阶段使用 COPY --from=
命令将第一阶段的库文件 /usr/local/lib/libproto*
复制到当前图像的。
我看到的问题是第一个图像包含从通用库文件名到特定版本文件名的符号链接。据我所知,这是 Debian 和许多其他 Linux 系统中的常见做法。 Docker 的 COPY
命令似乎不理解符号链接,因此制作了库文件的两个完整副本。这导致更大的 Docker 图像大小和来自后来 apt-get
命令的警告达到 ldconfig: /usr/local/lib/libprotobuf.so.17 is not a symbolic link
的调调。
我的特定文件目前看起来像:
#Compile any tools we cannot install from packages
FROM gcc:7 as builder
USER 0
RUN \
apt-get -y update && \
apt-get -y install \
clang \
libc++-dev \
libgflags-dev \
libgtest-dev
RUN \
# Protocol Buffer & gRPC
# install protobuf first, then grpc
git clone -b $(curl -L https://grpc.io/release) \
https://github.com/grpc/grpc /var/local/git/grpc && \
cd /var/local/git/grpc && \
git submodule update --init && \
echo "--- installing protobuf ---" && \
cd third_party/protobuf && \
./autogen.sh && ./configure --enable-shared && \
make -j$(nproc) && make install && make clean && ldconfig && \
echo "--- installing grpc ---" && \
cd /var/local/git/grpc && \
make -j$(nproc) && make install && make clean && ldconfig
FROM debian
LABEL \
Description="Basic Debian production environment with a number of libraries configured" \
MAINTAINER="Mr Me"
ARG prefix=/usr/local
ARG binPath=$prefix/bin
ARG libPath=$prefix/lib
# Copy over pre-made tools
# Protocol Buffer
COPY --from=builder /usr/local/lib/libproto* $libPath/
# gRPC
COPY --from=builder /usr/local/lib/libaddress_sorting.so.6.0.0 $libPath/
COPY --from=builder /usr/local/lib/libgpr* $libPath/
COPY --from=builder /usr/local/lib/libgrpc* $libPath/
RUN ldconfig
# Install remaining tools using apt-get
RUN apt-get -y update && \
apt-get -y install \
libhdf5-dev \
libssl1.1 \
uuid-dev;
如您所见,我正在尝试将最新版本的 gRPC 和 Protocol Buffer 添加到基于 Debian 的运行时映像。
这更像是一种解决方法,而不是答案。
您可以 tar 文件,将 tar 球复制到第二个容器,然后取消 tar 它们。
默认情况下
我有一个 Docker 文件,它分为两阶段多阶段 docker 构建。第一阶段生成一个基本的 gcc 构建环境,其中编译了许多 C 和 C++ 库。第二阶段使用 COPY --from=
命令将第一阶段的库文件 /usr/local/lib/libproto*
复制到当前图像的。
我看到的问题是第一个图像包含从通用库文件名到特定版本文件名的符号链接。据我所知,这是 Debian 和许多其他 Linux 系统中的常见做法。 Docker 的 COPY
命令似乎不理解符号链接,因此制作了库文件的两个完整副本。这导致更大的 Docker 图像大小和来自后来 apt-get
命令的警告达到 ldconfig: /usr/local/lib/libprotobuf.so.17 is not a symbolic link
的调调。
我的特定文件目前看起来像:
#Compile any tools we cannot install from packages
FROM gcc:7 as builder
USER 0
RUN \
apt-get -y update && \
apt-get -y install \
clang \
libc++-dev \
libgflags-dev \
libgtest-dev
RUN \
# Protocol Buffer & gRPC
# install protobuf first, then grpc
git clone -b $(curl -L https://grpc.io/release) \
https://github.com/grpc/grpc /var/local/git/grpc && \
cd /var/local/git/grpc && \
git submodule update --init && \
echo "--- installing protobuf ---" && \
cd third_party/protobuf && \
./autogen.sh && ./configure --enable-shared && \
make -j$(nproc) && make install && make clean && ldconfig && \
echo "--- installing grpc ---" && \
cd /var/local/git/grpc && \
make -j$(nproc) && make install && make clean && ldconfig
FROM debian
LABEL \
Description="Basic Debian production environment with a number of libraries configured" \
MAINTAINER="Mr Me"
ARG prefix=/usr/local
ARG binPath=$prefix/bin
ARG libPath=$prefix/lib
# Copy over pre-made tools
# Protocol Buffer
COPY --from=builder /usr/local/lib/libproto* $libPath/
# gRPC
COPY --from=builder /usr/local/lib/libaddress_sorting.so.6.0.0 $libPath/
COPY --from=builder /usr/local/lib/libgpr* $libPath/
COPY --from=builder /usr/local/lib/libgrpc* $libPath/
RUN ldconfig
# Install remaining tools using apt-get
RUN apt-get -y update && \
apt-get -y install \
libhdf5-dev \
libssl1.1 \
uuid-dev;
如您所见,我正在尝试将最新版本的 gRPC 和 Protocol Buffer 添加到基于 Debian 的运行时映像。
这更像是一种解决方法,而不是答案。
您可以 tar 文件,将 tar 球复制到第二个容器,然后取消 tar 它们。
默认情况下