tests: install virtualenv in the Docker images.

pull/192/head
David Wilson 7 years ago
parent b91785c9a1
commit 1e882a72c0

@ -16,15 +16,16 @@ FROM debian:stable
RUN apt-get update RUN apt-get update
RUN \ RUN \
apt-get install -y python2.7 openssh-server sudo rsync git strace \ apt-get install -y python2.7 openssh-server sudo rsync git strace \
libjson-perl && \ libjson-perl python-virtualenv && \
apt-get clean apt-get clean && \
rm -rf /var/cache/apt
""" """
CENTOS_DOCKERFILE = r""" CENTOS_DOCKERFILE = r"""
FROM centos:7 FROM centos:7
RUN yum clean all && \ RUN yum clean all && \
yum -y install -y python2.7 openssh-server sudo rsync git strace sudo \ yum -y install -y python2.7 openssh-server sudo rsync git strace sudo \
perl-JSON && \ perl-JSON python-virtualenv && \
yum clean all && \ yum clean all && \
groupadd sudo && \ groupadd sudo && \
ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key

Loading…
Cancel
Save