From 501c11c111ad95aaab8332bd4637d77216919ecc Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Wed, 24 Jul 2024 21:04:49 +0200 Subject: [PATCH] FIX: buildah related fix --- server/Containerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/Containerfile b/server/Containerfile index 08147d9..10ff916 100644 --- a/server/Containerfile +++ b/server/Containerfile @@ -13,10 +13,10 @@ WORKDIR /src RUN git clone https://github.com/zmanda/amanda.git && cd amanda && git checkout ${AMANDA_VERSION} && git submodule update --init --recursive -RUN ./autogen -RUN ./configure --without-client --without-bsd-security --with-ssl-security --with-ssh-security --with-readline --with-ipv6 --with-user=backup --with-group=backup -RUN make -RUN make install +RUN cd amanda && ./autogen +RUN cd amanda && ./configure --without-client --without-bsd-security --with-ssl-security --with-ssh-security --with-readline --with-ipv6 --with-user=backup --with-group=backup +RUN cd amanda && make +RUN cd amanda && make install FROM debian:stable-slim