mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-09 10:27:10 +02:00
bin
module
vendor
ConcurrentQueue
Fmt
MaxmindDB
POCO
SimpleIni
Squirrel
TinyDir
ZMQ
RELICENSE
builds
doc
external
include
m4
packaging
perf
src
tests
tools
unittests
AUTHORS
CMakeLists.txt
COPYING
COPYING.LESSER
Dockerfile
Doxygen.cfg
INSTALL
Jenkinsfile
Makefile.am
NEWS
README.cygwin.md
README.doxygen.md
README.md
SECURITY.md
SupportedPlatforms.md
acinclude.m4
appveyor.yml
autogen.sh
branding.bmp
ci_build.sh
ci_deploy.sh
config.sh
configure.ac
installer.ico
version.sh
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
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
|