Skip to content
Snippets Groups Projects
Select Git revision
  • 6dcc3a66a145a95322482ded87a6d726b1b18555
  • master default protected
2 results

ansible.cfg

  • Dockerfile 1.08 KiB
    FROM git.slub-dresden.de/debian-packaging/dependency_proxy/containers/debian:bullseye-slim
    
    ARG GITDIR
    ENV DEBIAN_FRONTEND=noninteractive
    ENV EXLIBRIS_REPO=https://github.com/ExLibrisGroup/Rosetta.dps-sdk-projects.git
    ENV EXLIBRIS_REPODIR=Rosetta.dps-sdk-projects
    ENV EXLIBRIS_PATH=/exlibris
    
    RUN apt-get update; \
        apt-get install -y --no-install-recommends gnupg wget; \
        wget -O - http://sdvdebianrepo.slub-dresden.de/deb-repository/pub.gpg.key | apt-key add - ; \
        echo "deb http://sdvdebianrepo.slub-dresden.de/deb-repository bullseye main" > /etc/apt/sources.list.d/slub.list;
    
    RUN apt-get update; \
        apt-get -y upgrade; \
        apt-get install -y \
          apt-file \
          apt-utils \
          make \
          openjdk-17-jdk \
          junit4 \
          git \
          clamav-daemon \
        ;
    RUN apt-file update;
    RUN git clone https://github.com/ExLibrisGroup/Rosetta.dps-sdk-projects.git
    RUN ln -s ${EXLIBRIS_REPODIR} ${EXLIBRIS_PATH}
    RUN clamconf -g /etc/clamav/clamd.conf
    RUN echo TCPSocket 3310 >> /etc/clamav/clamd.conf
    RUN echo TCPAddr 127.0.0.1 >> /etc/clamav/clamd.conf
    RUN /usr/bin/freshclam --verbose