|
|
|
@ -1,55 +1,38 @@ |
|
|
|
|
ARG ATHEME_UID=10000 |
|
|
|
|
ARG ATHEME_VERSION=7.2.10-r2 |
|
|
|
|
ARG BUILD_CONTRIB_MODULES= |
|
|
|
|
ARG AT_VERSION=7.2.10-r2 |
|
|
|
|
|
|
|
|
|
FROM alpine:latest AS builder |
|
|
|
|
ARG ATHEME_VERSION |
|
|
|
|
ARG BUILD_CONTRIB_MODULES |
|
|
|
|
ARG MAKE_NUM_JOBS |
|
|
|
|
|
|
|
|
|
# Install build-deps and runtime deps |
|
|
|
|
RUN apk add --no-cache \ |
|
|
|
|
build-base \ |
|
|
|
|
pkgconf \ |
|
|
|
|
openssl-dev \ |
|
|
|
|
git |
|
|
|
|
|
|
|
|
|
# libexecinfo is used by contrib/gen_echoserver |
|
|
|
|
RUN test -z "$BUILD_CONTRIB_MODULES" || apk add --no-cache libexecinfo-dev |
|
|
|
|
ARG AT_VERSION |
|
|
|
|
ARG MK_THREADS |
|
|
|
|
|
|
|
|
|
# Checkout from Git - we need to manually bump the libmowgli snapshot to fix compilation against musl |
|
|
|
|
# This will be fixed when 7.3 releases |
|
|
|
|
RUN apk --update add \ |
|
|
|
|
git |
|
|
|
|
RUN git clone \ |
|
|
|
|
-b v${ATHEME_VERSION} \ |
|
|
|
|
-b v${AT_VERSION} \ |
|
|
|
|
--depth=1 \ |
|
|
|
|
--recursive \ |
|
|
|
|
--recurse-submodules \ |
|
|
|
|
-j2 \ |
|
|
|
|
https://github.com/atheme/atheme.git /atheme-src |
|
|
|
|
|
|
|
|
|
WORKDIR /atheme-src |
|
|
|
|
|
|
|
|
|
RUN apk add \ |
|
|
|
|
g++ \ |
|
|
|
|
pkgconfig |
|
|
|
|
RUN ./configure \ |
|
|
|
|
--prefix=/srv/atheme |
|
|
|
|
|
|
|
|
|
RUN cd libmowgli-2 && \ |
|
|
|
|
git pull origin master |
|
|
|
|
|
|
|
|
|
# Configure and build |
|
|
|
|
RUN ./configure \ |
|
|
|
|
--prefix=/srv/atheme $(test -z "$BUILD_CONTRIB_MODULES" || echo --enable-contrib) && \ |
|
|
|
|
make -j${MAKE_NUM_JOBS:-$(nproc)} && \ |
|
|
|
|
RUN apk add \ |
|
|
|
|
make |
|
|
|
|
RUN make -j${MK_THREADS:-$(nproc)} && \ |
|
|
|
|
make install |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FROM alpine:latest |
|
|
|
|
ARG ATHEME_UID |
|
|
|
|
ARG BUILD_CONTRIB_MODULES |
|
|
|
|
|
|
|
|
|
# openssl: used by some hashing and SASL algorithms |
|
|
|
|
# msmtp: used to route mail to an external mail server |
|
|
|
|
RUN apk add --no-cache \ |
|
|
|
|
openssl \ |
|
|
|
|
msmtp \ |
|
|
|
|
ca-certificates \ |
|
|
|
|
&& (test -z "$BUILD_CONTRIB_MODULES" || apk add --no-cache libexecinfo) |
|
|
|
|
|
|
|
|
|
RUN adduser -D -u $ATHEME_UID atheme |
|
|
|
|
|
|
|
|
|
RUN adduser -D atheme |
|
|
|
|
|
|
|
|
|
COPY --from=builder --chown=atheme /srv/atheme /srv/atheme |
|
|
|
|
|
|
|
|
|