From baff19767d9b4fd677368686d124ff167cbf1b73 Mon Sep 17 00:00:00 2001 From: Iker Pedrosa Date: Fri, 3 Mar 2023 13:10:12 +0100 Subject: [PATCH] container: add alpine Signed-off-by: Iker Pedrosa --- share/containers/alpine.dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 share/containers/alpine.dockerfile diff --git a/share/containers/alpine.dockerfile b/share/containers/alpine.dockerfile new file mode 100644 index 00000000..d2a1d45d --- /dev/null +++ b/share/containers/alpine.dockerfile @@ -0,0 +1,17 @@ +ARG OS_IMAGE="alpine:latest" + +FROM "${OS_IMAGE}" AS build + +RUN apk add autoconf automake build-base byacc 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 -j4 +RUN make install + +FROM scratch AS export +COPY --from=build /usr/local/src/shadow/config.log \ + /usr/local/src/shadow/config.h ./