@@ -9,66 +9,25 @@ RUN apt-get install -y --no-install-recommends \
9
9
screen \
10
10
htop
11
11
12
- RUN pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com \
13
- sphinx \
14
- sphinx-autobuild \
15
- sphinx_rtd_theme \
16
- recommonmark
17
-
18
- # ============ Install same deps for python3 ============
19
12
RUN pyenv global 3.6.3
20
13
21
- # Install tools
22
- RUN pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com setuptools
23
- RUN pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com \
24
- "numpy>=1.14.0" \
25
- scipy \
26
- jinja2 \
27
- pyyaml \
28
- sh==1.12.14 \
29
- pycodestyle==2.4.0 \
30
- filelock \
31
- PTable
32
-
33
- # Install Tensorflow
34
- RUN pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com \
35
- tensorflow==1.8.0
36
-
37
- # Install pytorch (refer to: https://pytorch.org/get-started/locally/)
38
- RUN pip install future==0.17.1 torchvision_nightly
39
- RUN pip install torch_nightly -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
40
-
41
- # Install ONNX
42
- RUN pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com \
43
- onnx==1.3.0 \
44
- onnx-tf==1.2.0
45
-
46
14
RUN pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com \
47
15
sphinx \
48
16
sphinx-autobuild \
49
17
sphinx_rtd_theme \
50
18
recommonmark
51
19
52
- RUN pyenv global 2.7.14
53
- # ============ End installing same deps for python3 ============
54
-
55
-
56
20
# Customize vim
57
- RUN mkdir -p ~/.vim/autoload ~/.vim/bundle && \
58
- curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
59
- RUN mkdir -p ~/.vim/bundle
60
- RUN cd ~/.vim/bundle && \
61
- git clone https://github.com/scrooloose/nerdtree.git && \
62
- git clone https://github.com/vim-syntastic/syntastic.git && \
63
- git clone https://github.com/vim-airline/vim-airline.git && \
64
- git clone https://github.com/altercation/vim-colors-solarized.git && \
65
- git clone https://github.com/bazelbuild/vim-ft-bzl.git && \
66
- git clone https://github.com/google/vim-maktaba.git && \
67
- git clone https://github.com/google/vim-codefmt.git
68
- RUN curl -LSso ~/.vimrc https://gist.githubusercontent.com/llhe/71c5802919debd5825c100c0135478a7/raw/16a35020cc65f9c25d0cf8f11a3ba7b345a1271d/.vimrc
21
+ RUN git clone --recursive https://github.com/llhe/vimrc.git && \
22
+ cd vimrc && \
23
+ rm -rf ~/.vim && \
24
+ rm -rf ~/.vimrc && \
25
+ ln -s `pwd`/vim ~/.vim && \
26
+ ln -s `pwd`/vimrc ~/.vimrc
27
+
69
28
70
29
# Upgrade CMake
71
- RUN wget https://cmake.org/files/v3.11/cmake-3.11.3-Linux-x86_64.tar.gz -P /tmp/ && \
30
+ RUN wget -q https://cmake.org/files/v3.11/cmake-3.11.3-Linux-x86_64.tar.gz -P /tmp/ && \
72
31
tar zxf /tmp/cmake-3.11.3-Linux-x86_64.tar.gz --strip-components=1 -C /usr/local/ && \
73
32
update-alternatives --install /usr/bin/cmake cmake /usr/local/bin/cmake 1 --force && \
74
33
rm -f /tmp/cmake-3.11.3-Linux-x86_64.tar.gz
@@ -106,7 +65,7 @@ RUN cd /opt && \
106
65
107
66
# Mirror of https://cnbj1.fds.api.xiaomi.com/mace/third-party/gcc-linaro/gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz
108
67
RUN cd /opt && \
109
- wget -q https://releases.linaro.org/components/toolchain/binaries/7.3-2018.05/aarch64-linux-gnu/gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz
68
+ wget -q https://releases.linaro.org/components/toolchain/binaries/7.3-2018.05/aarch64-linux-gnu/gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz && \
110
69
tar xf gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz && \
111
70
rm -rf gcc-linaro-7.3.1-2018.05-x86_64_aarch64-linux-gnu.tar.xz
112
71
0 commit comments