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