X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=.travis%2FDockerfile;fp=.travis%2FDockerfile;h=e4bfa9538be6c769a801d5f8ae2348a599e7400c;hb=0e8f07fda6e40b5967d9c6b28b3200db22766343;hp=0000000000000000000000000000000000000000;hpb=6091f3aa5b28a6e30e54b478325fe6f7aa74c273;p=debbugs.git diff --git a/.travis/Dockerfile b/.travis/Dockerfile new file mode 100644 index 0000000..e4bfa95 --- /dev/null +++ b/.travis/Dockerfile @@ -0,0 +1,15 @@ +FROM debian:stable-slim +RUN apt-get -qq update; \ + apt-get install --no-install-recommends -y devscripts equivs; \ + rm -rf /var/lib/apt/lists/*; \ + apt-get clean; +COPY debian/control debian/control +COPY debian/changelog debian/changelog +RUN dch -r -m ''; +RUN apt-get -qq update; \ + mk-build-deps --install \ + --tool 'apt-get -y -o Debug:pkgProblemResolver=yes --no-install-recommends' \ + debian/control; \ + rm -rf /var/lib/apt/lists/*; \ + apt-get clean; +COPY . debbugs \ No newline at end of file