diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/tools/dockerfile/test/sanity/Dockerfile.template | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/tools/dockerfile/test/sanity/Dockerfile.template b/templates/tools/dockerfile/test/sanity/Dockerfile.template index 05b2f7be64..b9982b0b0f 100644 --- a/templates/tools/dockerfile/test/sanity/Dockerfile.template +++ b/templates/tools/dockerfile/test/sanity/Dockerfile.template @@ -32,7 +32,6 @@ FROM debian:jessie <%include file="../../apt_get_basic.include"/> - <%include file="../../cxx_deps.include"/> #======================== # Sanity test dependencies RUN apt-get update && apt-get install -y python-pip @@ -44,5 +43,8 @@ # This makes sure that the docker binary we inject has its dependencies. RUN curl https://get.docker.com/ | sh RUN apt-get remove --purge -y docker-engine - - <%include file="../../run_tests_addons.include"/> + + RUN mkdir /var/local/jenkins + + # Define the default command. + CMD ["bash"] |