-
Notifications
You must be signed in to change notification settings - Fork 45
/
Dockerfile
38 lines (35 loc) · 1.03 KB
/
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 ubuntu:trusty
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get install -y
RUN apt-get install -y software-properties-common \
python-software-properties \
python3-pip \
wget
ADD requirements.txt .
RUN apt-get install cython -y
RUN pip3 install -r requirements.txt
# set locale
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# language deps
RUN wget http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb
RUN dpkg -i erlang-solutions_1.0_all.deb
RUN add-apt-repository ppa:eugenesan/ppa -y
RUN apt-get update
RUN apt-get install elixir -y
RUN apt-get install php5 -y
RUN apt-get install golang -y
RUN apt-get install clojure1.4 -y
RUN apt-get install ghc -y
RUN apt-get install g++ gcc -y
RUN apt-get install lua5.2 -y
RUN apt-get install ruby-full -y
RUN apt-get install sbcl -y
RUN apt-get install gawk -y
RUN apt-get install git -y
RUN apt-get install racket -y
RUN apt-get install ocaml -y
WORKDIR /code