diff --git a/script/test_Dockerfile b/script/test_Dockerfile index 2fe73586a..b163f887f 100644 --- a/script/test_Dockerfile +++ b/script/test_Dockerfile @@ -1,6 +1,8 @@ FROM golang:1.5.3 -RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list +# libseccomp in jessie is not _quite_ new enough -- need backports version +RUN echo 'deb http://httpredir.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list + RUN apt-get update && apt-get install -y \ build-essential \ curl \ @@ -9,8 +11,8 @@ RUN apt-get update && apt-get install -y \ libcap-dev \ libprotobuf-dev \ libprotobuf-c0-dev \ - libseccomp2 \ - libseccomp-dev \ + libseccomp2/jessie-backports \ + libseccomp-dev/jessie-backports \ protobuf-c-compiler \ protobuf-compiler \ python-minimal \