-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
38 lines (35 loc) · 932 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM harnesscloud/debian-cloudimage:latest
MAINTAINER Mark Stillwell <[email protected]>
# install dependencies
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install \
apache2 \
autoconf-archive \
automake \
build-essential \
default-jdk \
git \
libapache2-mod-php5 \
libapache2-mod-wsgi \
libcurl4-openssl-dev \
libffi-dev \
php5-curl \
python \
python-dev \
python-httplib2 \
python-numpy \
python-paramiko \
python-pexpect \
python-pip \
python-openssl \
python-pycurl \
python-scipy \
python-setuptools \
python-simplejson \
python-sklearn \
sqlite3 && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
RUN pip install argcomplete
ADD ssh_config /root/.ssh/config
RUN chmod 644 /root/.ssh/config