##// END OF EJS Templates
Update Dockerfile....
Jessica Frazelle -
Show More
@@ -7,13 +7,9 b' MAINTAINER IPython Project <ipython-dev@scipy.org>'
7 7
8 8 ENV DEBIAN_FRONTEND noninteractive
9 9
10 # Make sure apt is up to date
11 RUN apt-get update
12 RUN apt-get upgrade -y
13
14 10 # Not essential, but wise to set the lang
15 11 # Note: Users with other languages should set this in their derivative image
16 RUN apt-get install -y language-pack-en
12 RUN apt-get update && apt-get install -y language-pack-en
17 13 ENV LANGUAGE en_US.UTF-8
18 14 ENV LANG en_US.UTF-8
19 15 ENV LC_ALL en_US.UTF-8
@@ -22,14 +18,31 b' RUN locale-gen en_US.UTF-8'
22 18 RUN dpkg-reconfigure locales
23 19
24 20 # Python binary dependencies, developer tools
25 RUN apt-get install -y -q build-essential make gcc zlib1g-dev git && \
26 apt-get install -y -q python python-dev python-pip python3-dev python3-pip && \
27 apt-get install -y -q libzmq3-dev sqlite3 libsqlite3-dev pandoc libcurl4-openssl-dev nodejs nodejs-legacy npm
21 RUN apt-get update && apt-get install -y -q \
22 build-essential \
23 make \
24 gcc \
25 zlib1g-dev \
26 git \
27 python \
28 python-dev \
29 python-pip \
30 python3-dev \
31 python3-pip \
32 python-sphinx \
33 python3-sphinx \
34 libzmq3-dev \
35 sqlite3 \
36 libsqlite3-dev \
37 pandoc \
38 libcurl4-openssl-dev \
39 nodejs \
40 nodejs-legacy \
41 npm
28 42
29 43 # In order to build from source, need less
30 44 RUN npm install -g less
31 45
32 RUN apt-get install -y -q python-sphinx python3-sphinx
33 46 RUN pip install invoke
34 47
35 48 RUN mkdir -p /srv/
General Comments 0
You need to be logged in to leave comments. Login now