DISABLE FDs (REMOVE ME).
[jackhill/mal.git] / python / Dockerfile
CommitLineData
f7824465
JM
1FROM ubuntu:vivid
2MAINTAINER Joel Martin <github@martintribe.org>
3
4##########################################################
5# General requirements for testing or common across many
6# implementations
7##########################################################
8
9RUN apt-get -y update
10
11# Required for running tests
12RUN apt-get -y install make python
13
14# Some typical implementation and test requirements
e152d488 15RUN apt-get -y install curl libreadline-dev libedit-dev
f7824465
JM
16
17RUN mkdir -p /mal
18WORKDIR /mal
19
20##########################################################
21# Specific implementation requirements
22##########################################################
23
24# Nothing additional needed for python
8d78bc26 25RUN apt-get -y install python3
8e2d4a4c
JM
26
27# For dist packaging
28RUN apt-get -y install zip