summaryrefslogtreecommitdiff
path: root/scripts/Dockerfile
blob: 757b5233522196ecf15a989201b6acd045d1ec06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu

# install dependencies
RUN apt-get update && \
    apt-get install -y build-essential gawk git m4 wget python

# install pip
WORKDIR $HOME
RUN wget https://bootstrap.pypa.io/get-pip.py && \
    python get-pip.py && rm get-pip.py

# install python dependencies
RUN pip install fs pyyaml sandboxlib requests jsonschema bottle cherrypy