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

diff --git a/share/containers/debian.dockerfile b/share/containers/debian.dockerfile
new file mode 100644 (file)
index 0000000..b21430e
--- /dev/null
@@ -0,0 +1,24 @@
+ARG OS_IMAGE="debian:latest"
+
+FROM "${OS_IMAGE}" AS build
+
+RUN cat /etc/apt/sources.list
+RUN sed -i '/deb-src/d' /etc/apt/sources.list \
+    && sed -i '/^deb /p;s/ /-src /' /etc/apt/sources.list
+RUN export DEBIAN_PRIORITY=critical \
+    && export DEBIAN_FRONTEND=noninteractive
+RUN apt-get update -y \
+    && apt-get dist-upgrade -y
+RUN apt-get build-dep shadow -y
+RUN apt-get install libbsd-dev pkgconf -y
+
+COPY ./ /usr/local/src/shadow/
+WORKDIR /usr/local/src/shadow/
+
+RUN ./autogen.sh --without-selinux --enable-man --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 ./