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