aboutsummaryrefslogtreecommitdiff
path: root/contrib/Dockerfile.tests
blob: 417daccb21f9bdcbc939d299774d7bbf24b46573 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
FROM gcc:latest
WORKDIR /usr/src/unbound
RUN apt-get update
# install semantic parser & lexical analyzer
RUN apt-get install -y bison flex
# install packages used in tests
RUN apt-get install -y ldnsutils dnsutils xxd splint doxygen netcat
# 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"]