我如何构建一个基于 alpine 的类似 docker 图像,适用于 ubuntu?

How can I build a similar docker image based on alpine that works on ubuntu?

我正在尝试重写 Dockerfile (https://github.com/orangefoil/rcssserver-docker/blob/master/Dockerfile),以便它使用 alpine 而不是 ubuntu。目标是减小文件大小。

在原始图像中,robocup 足球服务器是使用 g++、flex、bison 等从头构建的。

FROM ubuntu:18.04 AS build
ARG VERSION=16.0.0
WORKDIR /root
RUN apt update && \
    apt -y install autoconf bison clang flex libboost-dev libboost-all-dev libc6-dev make wget
RUN wget https://github.com/rcsoccersim/rcssserver/archive/rcssserver-$VERSION.tar.gz && \
    tar xfz rcssserver-$VERSION.tar.gz && \
    cd rcssserver-rcssserver-$VERSION && \
    ./bootstrap && \
    ./configure && \
    make && \
    make install && \
    ldconfig

我试图在 alpine 上做同样的事情,不得不交换一些包:

FROM alpine:latest
ARG VERSION=16.0.0
WORKDIR /root
# Add basics first
RUN apk — no-cache update \
    && apk upgrade \
    && apk add autoconf bison clang-dev flex-dev boost-dev make wget automake libtool-dev g++ build-base
RUN wget https://github.com/rcsoccersim/rcssserver/archive/rcssserver-$VERSION.tar.gz
RUN tar xfz rcssserver-$VERSION.tar.gz
RUN cd rcssserver-rcssserver-$VERSION && \
    ./bootstrap && \
    ./configure && \
    make && \
    make install && \
    ldconfig

很遗憾,我的版本还不能运行。它失败了

/usr/lib/gcc/x86_64-alpine-linux-musl/9.3.0/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lrcssclangparser

根据我目前的发现,如果未安装开发包(请参阅 ld cannot find an existing library),则可能会发生这种情况,但我更改为可以找到它们的开发包,但仍然没有成功。

所以,我目前的假设是 ubuntu 安装了一些包,我需要将其添加到我的 alpine 映像中。我会排除代码问题,因为 ubuntu 版本有效。

任何想法,可能缺少什么?我也很乐意自己了解如何比较这些包,但是 ubuntu 和 alpine 中的包命名不一样,所以我发现很难弄明白。

您应该使用 multi-stage build 将其拆分。在您现在构建的映像中,最终映像包含 C 工具链和所有开发库以及那些 -dev 包安装的 header;您实际上不需要任何这些来 运行 构建的应用程序。基本思想是完全按照您现在拥有的方式构建应用程序,但是 COPY 仅将构建的应用程序构建到具有较少依赖项的新映像中。

这看起来像这样(未经测试):

FROM ubuntu:18.04 AS build
# ... exactly what's in the original question ...

FROM ubuntu:18.04

# Install the shared libraries you need to run the application,
# but not -dev headers or the full C toolchain.  You may need to
# run `ldd` on the built binary to see what exactly it needs.
RUN apt-get update \
 && DEBIAN_FRONTEND=noninteractive \
    apt-get install --assume-yes --no-install-recommends \
      libboost-atomic1.65.1 \
      libboost-chrono1.65.1 \
      # ... more libboost-* libraries as required ...

# Get the built application out of the original image.
# Autoconf's default is to install into /usr/local, and in a
# typical Docker base image nothing else will be installed there.
COPY --from=build /usr/local /usr/local
RUN ldconfig

# Describe how to run a container.
EXPOSE 12345
CMD ["/usr/local/bin/rcssserver"]

与 C 工具链、header 文件和 build-time 库的大小相比,Alpine 和 Ubuntu 图像之间的差异非常小,Alpine 具有 well-documented 其最小 libc 实现的库兼容性问题。