[ADD]Python tests

This commit is contained in:
Fabien Bourgeois 2016-09-30 15:01:09 +02:00
parent c1d43ee93d
commit 5c8cfae671
2 changed files with 15 additions and 0 deletions

7
py27/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM debian:jessie
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
RUN apt-get update && apt-get install -y --no-install-recommends python2.7-minimal
# Packages cleanup
RUN apt-get purge -y --auto-remove && apt-get clean
CMD bash

8
xonsh/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM debian:jessie
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
RUN apt-get update && apt-get install -y --no-install-recommends python3.4-minimal python3-pip
RUN pip3 install xonsh
# Packages cleanup
RUN apt-get purge -y --auto-remove && apt-get clean
CMD bash