aboutsummaryrefslogtreecommitdiff
path: root/contrib/unbound/contrib/Dockerfile.tests
blob: 4d13210216b2a81e6a7d8ec5ba921a63850e1fa6 (plain) (blame)
1
2
3
4
5
6
7
8
9
FROM gcc:latest
WORKDIR /usr/src/unbound
# install semantic parser & lexical analyzer
# install packages used in tests
RUN apt-get update && apt-get install -y bison flex ldnsutils dnsutils xxd splint doxygen netcat-openbsd
# accept short rsa keys, which are used in tests
RUN sed -i 's/SECLEVEL=2/SECLEVEL=1/g' /usr/lib/ssl/openssl.cnf

CMD ["/bin/bash"]