diff --git a/test/utils/docker/ubuntu1404/Dockerfile b/test/utils/docker/ubuntu1404/Dockerfile index eea658a9fc2..f3535313716 100644 --- a/test/utils/docker/ubuntu1404/Dockerfile +++ b/test/utils/docker/ubuntu1404/Dockerfile @@ -54,6 +54,7 @@ RUN apt-get update -y && \ && \ apt-get clean +RUN pip install pip --upgrade RUN pip install --upgrade pycrypto cryptography # helpful things taken from the ubuntu-upstart Dockerfile: @@ -92,7 +93,6 @@ RUN ssh-keygen -q -t rsa -N '' -f /root/.ssh/id_rsa && \ cp /root/.ssh/id_rsa.pub /root/.ssh/authorized_keys && \ for key in /etc/ssh/ssh_host_*_key.pub; do echo "localhost $(cat ${key})" >> /root/.ssh/known_hosts; done VOLUME /sys/fs/cgroup /run/lock /run /tmp -RUN pip install pip --upgrade RUN pip install coverage junit-xml ENV container=docker CMD ["/sbin/init"]