From 56809e53358cd26842c5bbbe5488eb85ac7e6e15 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kotek?= Date: Tue, 29 Aug 2017 13:31:39 +0200 Subject: [PATCH] Add dockerfile for valgrind ci tests. --- ci/valgrind/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ci/valgrind/Dockerfile diff --git a/ci/valgrind/Dockerfile b/ci/valgrind/Dockerfile new file mode 100644 index 000000000..79e13bd17 --- /dev/null +++ b/ci/valgrind/Dockerfile @@ -0,0 +1,11 @@ +FROM cznic/ubuntu:16.04 +MAINTAINER Knot DNS + +WORKDIR /root +CMD ["/bin/bash"] + +# name: cznic/ubuntu-valgrind:16.04 +# run ci tests with valgrind memory checks +RUN apt-get update +RUN apt-get upgrade -y +RUN apt-get install -y valgrind -- 2.47.2