Script for running integration tests on multiple distros via Docker

This commit is contained in:
Marcin Kulik
2017-12-02 18:40:09 +01:00
parent 418ee5a8a5
commit 7418b7240d
5 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
FROM centos:7
RUN yum install -y epel-release
RUN yum install -y python34
WORKDIR /usr/src/app
COPY asciinema asciinema
COPY tests tests
ENV LANG en_US.utf8
ENV SHELL /bin/bash
ENV USER docker