Home | History | Annotate | Line # | Download | only in contrib
Dockerfile.tests revision 1.1
      1  1.1  christos FROM gcc:latest
      2  1.1  christos WORKDIR /usr/src/unbound
      3  1.1  christos RUN apt-get update
      4  1.1  christos # install semantic parser & lexical analyzer
      5  1.1  christos RUN apt-get install -y bison flex
      6  1.1  christos # install packages used in tests
      7  1.1  christos RUN apt-get install -y ldnsutils dnsutils xxd splint doxygen netcat
      8  1.1  christos # accept short rsa keys, which are used in tests
      9  1.1  christos RUN sed -i 's/SECLEVEL=2/SECLEVEL=1/g' /usr/lib/ssl/openssl.cnf
     10  1.1  christos 
     11  1.1  christos CMD ["/bin/bash"]
     12