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