mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
ddbef32103
This commit updates the Dockerfile to use multiple stages. In the first stage, compile-time dependencies are installed, and libzmq is compiled and tested. The second stage starts with a fresh, slim Docker image, and the compiled outputs of the first stage are copied over. Runtime dependencies, like libsodium and kerberos, are installed as well.
33 lines
949 B
Docker
33 lines
949 B
Docker
FROM debian:buster-slim AS builder
|
|
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update -qq \
|
|
&& apt-get install -qq --yes --no-install-recommends \
|
|
autoconf \
|
|
automake \
|
|
build-essential \
|
|
git \
|
|
libkrb5-dev \
|
|
libsodium-dev \
|
|
libtool \
|
|
pkg-config \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /opt/libzmq
|
|
COPY . .
|
|
RUN ./autogen.sh \
|
|
&& ./configure --prefix=/usr/local --with-libsodium --with-libgssapi_krb5 \
|
|
&& make \
|
|
&& make check \
|
|
&& make install
|
|
|
|
FROM debian:buster-slim
|
|
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update -qq \
|
|
&& apt-get install -qq --yes --no-install-recommends \
|
|
libkrb5-dev \
|
|
libsodium23 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
COPY --from=builder /usr/local /usr/local
|
|
RUN ldconfig && ldconfig -p | grep libzmq
|