Kumanda/client/Containerfile
Dominik Meyer 8305edf2aa
Some checks reported errors
continuous-integration/drone/push Build was killed
feat: provide own amanda-security.conf
2024-08-01 08:37:16 +02:00

51 lines
1.8 KiB
Docker

FROM debian:stable-slim as builder
ARG AMANDA_VERSION=tag-community-3.5.4
RUN apt-get -qy update && apt-get -qy upgrade
RUN apt-get -qy install git libssl-dev make autoconf autoconf-archive automake bash bison \
flex perl libperl-dev libglib2.0-dev swig \
libtirpc-dev libreadline-dev libxslt1-dev libxml-simple-perl procps \
dump xfsprogs xfsdump
WORKDIR /src
RUN git clone https://github.com/zmanda/amanda.git && cd amanda && git checkout ${AMANDA_VERSION} && git submodule update --init --recursive
WORKDIR /src/amanda
RUN ./autogen
RUN ./configure --without-server --without-bsd-security --with-ssl-security --with-ssh-security --with-readline --with-ipv6 --with-user=backup --with-group=backup
RUN make
RUN make install
FROM debian:stable-slim
RUN apt-get -qy update && apt-get -qy upgrade
RUN apt-get -qy install git libssl3 bash perl libglib2.0 swig libtirpc3 libreadline8 \
libxslt1.1 libxml-simple-perl libjson-perl openbsd-inetd procps \
dump xfsprogs xfsdump
RUN apt-get -qy install tini
COPY --from=builder /usr/local/ /usr/local/
COPY conf/amanda-client.conf /usr/local/etc/amanda/
RUN chown backup:backup /usr/local/etc/amanda
COPY inetd.conf /etc/inetd.conf
COPY scripts/entryPoint.sh /entryPoint.sh
RUN chmod +x /entryPoint.sh
ENV LD_LIBRARY_PATH /usr/local/share/perl5/site_perl/auto/Amanda/Debug/
RUN chown -R backup:backup /var/backups
COPY conf/amanda-client.conf /usr/local/etc/
RUN chown root:root /usr/local/etc/amanda-security.conf
RUN mkdir -p /usr/local/var/amanda/gnutar-lists
RUN touch /usr/local/var/amanda/amandates
RUN chown -R backup:backup /usr/local/var/amanda
USER backup
ENTRYPOINT ["/usr/bin/tini", "--", "/entryPoint.sh"]