mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-05 22:14:26 +08:00
Move build of sasl-xoauth2 to the main file
Some users have reported issues with GCE and how sasl-xoauth2 was built. Moving the building process back into the main part of the `Dockerfile` should hopefully prevent similar issues.
This commit is contained in:
parent
fab1b33b48
commit
a489b4c113
1 changed files with 32 additions and 26 deletions
58
Dockerfile
58
Dockerfile
|
@ -1,33 +1,11 @@
|
|||
ARG BASE_IMAGE=alpine:latest
|
||||
# ARG BASE_IMAGE=ubuntu:focal
|
||||
# ============================ BUILD SASL XOAUTH2 ============================
|
||||
FROM ${BASE_IMAGE} as build
|
||||
|
||||
ARG SASL_XOAUTH2_REPO_URL=https://github.com/tarickb/sasl-xoauth2.git
|
||||
ARG SASL_XOAUTH2_GIT_REF=release-0.10
|
||||
|
||||
RUN true && \
|
||||
if [ -f /etc/alpine-release ]; then \
|
||||
apk add --no-cache --upgrade git && \
|
||||
apk add --no-cache --upgrade cmake clang make gcc g++ libc-dev pkgconfig curl-dev jsoncpp-dev cyrus-sasl-dev; \
|
||||
else \
|
||||
export DEBIAN_FRONTEND=noninteractive && \
|
||||
echo "Europe/Berlin" > /etc/timezone && \
|
||||
apt-get update -y -qq && \
|
||||
apt-get install -y git build-essential cmake pkg-config libcurl4-openssl-dev libssl-dev libjsoncpp-dev libsasl2-dev; \
|
||||
fi
|
||||
RUN git clone --depth 1 --branch ${SASL_XOAUTH2_GIT_REF} ${SASL_XOAUTH2_REPO_URL} /sasl-xoauth2
|
||||
RUN true && \
|
||||
cd /sasl-xoauth2 && \
|
||||
mkdir build && \
|
||||
cd build && \
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/ .. && \
|
||||
make
|
||||
|
||||
# ============================ BUILD SASL XOAUTH2 ============================
|
||||
FROM ${BASE_IMAGE}
|
||||
LABEL maintainer="Bojan Cekrlic - https://github.com/bokysan/docker-postfix/"
|
||||
|
||||
# ============================ INSTALL BASIC SERVICES ============================
|
||||
|
||||
# Install supervisor, postfix
|
||||
# Install postfix first to get the first account (101)
|
||||
# Install opendkim second to get the second account (102)
|
||||
|
@ -49,8 +27,36 @@ RUN true && \
|
|||
fi && \
|
||||
cp -r /etc/postfix /etc/postfix.template
|
||||
|
||||
# Copy SASL-XOAUTH2 plugin
|
||||
COPY --from=build /sasl-xoauth2/build/src/libsasl-xoauth2.so /usr/lib/sasl2/
|
||||
# ============================ BUILD SASL XOAUTH2 ============================
|
||||
|
||||
ARG SASL_XOAUTH2_REPO_URL=https://github.com/tarickb/sasl-xoauth2.git
|
||||
ARG SASL_XOAUTH2_GIT_REF=release-0.10
|
||||
|
||||
RUN true && \
|
||||
if [ -f /etc/alpine-release ]; then \
|
||||
apk add --no-cache --upgrade --virtual .build-deps git cmake clang make gcc g++ libc-dev pkgconfig curl-dev jsoncpp-dev cyrus-sasl-dev; \
|
||||
else \
|
||||
export DEBIAN_FRONTEND=noninteractive && \
|
||||
echo "Europe/Berlin" > /etc/timezone && \
|
||||
apt-get update -y -qq && \
|
||||
apt-get install -y --no-install-recommends git build-essential cmake pkg-config libcurl4-openssl-dev libssl-dev libjsoncpp-dev libsasl2-dev; \
|
||||
fi && \
|
||||
git clone --depth 1 --branch ${SASL_XOAUTH2_GIT_REF} ${SASL_XOAUTH2_REPO_URL} /sasl-xoauth2 && \
|
||||
cd /sasl-xoauth2 && \
|
||||
mkdir build && \
|
||||
cd build && \
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/ .. && \
|
||||
make && \
|
||||
make install && \
|
||||
if [ -f /etc/alpine-release ]; then \
|
||||
apk del .build-deps; \
|
||||
else \
|
||||
apt-get remove --purge -y git build-essential cmake pkg-config libcurl4-openssl-dev libssl-dev libjsoncpp-dev libsasl2-dev; \
|
||||
apt-get autoremove --yes; apt-get clean autoclean; \
|
||||
rm -rf /var/lib/apt/lists/*; \
|
||||
fi && \
|
||||
cd / && rm -rf /sasl-xoauth2
|
||||
|
||||
|
||||
# Set up configuration
|
||||
COPY /configs/supervisord.conf /etc/supervisord.conf
|
||||
|
|
Loading…
Add table
Reference in a new issue