tests: add perl-JSON to the test images too.

Needed for the runner tests.
pull/193/head
David Wilson 7 years ago
parent ac80bf12f0
commit 7e49e73683

@ -15,14 +15,16 @@ DEBIAN_DOCKERFILE = r"""
FROM debian:stable 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 && \
apt-get clean apt-get clean
""" """
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 && \
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