summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIker Pedrosa <ipedrosa@redhat.com>2023-03-03 15:20:41 +0100
committerSerge Hallyn <serge@hallyn.com>2023-03-26 12:45:34 -0500
commit3efab2039f63e1316bc9bdcd49e9edbd9911e8c1 (patch)
tree36a83ccbd3986495799755345103f8927905d3c8
parentbaff19767d9b4fd677368686d124ff167cbf1b73 (diff)
container: add debian
Signed-off-by: Serge Hallyn <serge@hallyn.com> Signed-off-by: Alejandro Colomar <alx@kernel.org> Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
-rw-r--r--share/containers/debian.dockerfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/share/containers/debian.dockerfile b/share/containers/debian.dockerfile
new file mode 100644
index 00000000..b21430ec
--- /dev/null
+++ b/share/containers/debian.dockerfile
@@ -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 ./