2023-03-03 17:14:10 +05:30
|
|
|
ARG OS_IMAGE="fedora:latest"
|
|
|
|
|
|
|
|
FROM "${OS_IMAGE}" AS build
|
|
|
|
|
|
|
|
RUN dnf install -y dnf-plugins-core
|
|
|
|
RUN dnf builddep -y shadow-utils
|
|
|
|
|
|
|
|
COPY ./ /usr/local/src/shadow/
|
|
|
|
WORKDIR /usr/local/src/shadow/
|
|
|
|
|
|
|
|
RUN ./autogen.sh --enable-shadowgrp --enable-man --with-audit \
|
|
|
|
--with-sha-crypt --with-bcrypt --with-yescrypt --with-selinux \
|
|
|
|
--without-libcrack --without-libpam --enable-shared \
|
|
|
|
--with-group-name-max-length=32
|
2023-04-06 01:20:28 +05:30
|
|
|
RUN make -kj4 || true
|
|
|
|
RUN make
|
2023-03-03 17:14:10 +05:30
|
|
|
RUN make install
|
|
|
|
|
|
|
|
FROM scratch AS export
|
|
|
|
COPY --from=build /usr/local/src/shadow/config.log \
|
|
|
|
/usr/local/src/shadow/config.h ./
|