Reviewed-by: "Serge E. Hallyn" <serge@hallyn.com> Cc: Iker Pedrosa <ipedrosa@redhat.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
37 lines
633 B
Docker
37 lines
633 B
Docker
ARG OS_IMAGE="alpine:latest"
|
|
|
|
FROM "${OS_IMAGE}" AS build
|
|
|
|
RUN apk add \
|
|
autoconf \
|
|
automake \
|
|
bash \
|
|
build-base \
|
|
byacc \
|
|
cmocka-dev \
|
|
expect \
|
|
gettext-dev \
|
|
git \
|
|
libbsd-dev \
|
|
libeconf-dev \
|
|
libtool \
|
|
libxslt \
|
|
pkgconf
|
|
|
|
COPY ./ /usr/local/src/shadow/
|
|
WORKDIR /usr/local/src/shadow/
|
|
|
|
RUN ./autogen.sh \
|
|
--without-selinux \
|
|
--disable-man \
|
|
--disable-nls \
|
|
--with-yescrypt
|
|
RUN make -kj4 || true
|
|
RUN make
|
|
RUN bash -c "trap 'cat <tests/unit/test-suite.log >&2' ERR; make check;"
|
|
RUN make install
|
|
|
|
FROM scratch AS export
|
|
COPY --from=build /usr/local/src/shadow/config.log \
|
|
/usr/local/src/shadow/config.h ./
|