forked from juditacs/wordcount
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
21 lines (21 loc) · 814 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM ubuntu:14.04
MAINTAINER Judit Acs
RUN apt-get update
RUN yes | apt-get install -y wget curl gcc g++ nano python perl git default-jdk time software-properties-common mono-mcs ghc cabal-install
RUN yes | apt-add-repository ppa:ondrej/php
RUN yes | apt-add-repository ppa:staticfloat/juliareleases
RUN yes | apt-get update
RUN yes | apt-get install php7.0-cli php5.6-cli
RUN yes | apt-get install julia
RUN yes | apt-get install golang-go
RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
RUN sudo apt-get install --yes nodejs
RUN cabal update
RUN curl -sSf https://static.rust-lang.org/rustup.sh | sh
RUN git clone https://github.com/juditacs/wordcount.git
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
ENV LC_COLLATE C
ENV PYTHONIOENCODING utf-8