]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
container: add alpine
authorIker Pedrosa <ipedrosa@redhat.com>
Fri, 3 Mar 2023 12:10:12 +0000 (13:10 +0100)
committerSerge Hallyn <serge@hallyn.com>
Sun, 26 Mar 2023 17:45:34 +0000 (12:45 -0500)
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
share/containers/alpine.dockerfile [new file with mode: 0644]

diff --git a/share/containers/alpine.dockerfile b/share/containers/alpine.dockerfile
new file mode 100644 (file)
index 0000000..d2a1d45
--- /dev/null
@@ -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 ./