forked from cloudmesh/technologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
38 lines (26 loc) · 1.02 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:18.04
MAINTAINER Gregor von Laszewski <[email protected]>
RUN apt-get update -y
RUN apt-get install graphviz -y
RUN apt-get install python-pip -y
RUN apt-get install wget -y
RUN apt-get install curl -y
RUN pip install pip -U
RUN apt-get install git-core -y
RUN apt-get install dnsutils -y
RUN apt-get install haskell-platform -y
RUN apt-get install pandoc -y
RUN apt-get install pandoc-citeproc -y
RUN apt-get install -y build-essential libssl-dev libffi-dev
RUN apt-get install -y python3-dev
RUN apt-get install -y python3-pip
RUN apt-get install -y python3-venv
RUN pip3 install --upgrade pip setuptools
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1
RUN update-alternatives --config python
RUN update-alternatives --install /usr/bin/pip pip /usr/local/bin/pip3 10
RUN update-alternatives --config pip
RUN yes '' | update-alternatives --force --all
# RUN pip install pandoc-fignos
# RUN git clone https://github.com/cloudmesh-community/book.git
# RUN cd book; pip install -r requirements.txt