forked from espressomd/espresso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.Dockerfile
68 lines (66 loc) · 1.38 KB
/
.gitpod.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
FROM gitpod/workspace-full
# Install custom tools, runtime, etc.
RUN sudo apt-get update \
&& sudo apt-get install -y \
apt-utils \
autoconf \
automake \
build-essential \
ccache \
cmake \
curl \
cython3 \
gfortran \
gdb \
git \
jq \
lcov \
libblas-dev \
libboost-dev libboost-serialization-dev libboost-mpi-dev libboost-filesystem-dev libboost-test-dev \
libfftw3-dev \
libgsl-dev \
libhdf5-openmpi-dev \
liblapack-dev \
libopenmpi-dev \
libtool \
openmpi-bin \
openssh-client \
pkg-config \
python3 \
python3-coverage \
python3-dev \
python3-numpy \
python3-numpydoc \
python3-scipy \
python3-h5py \
python3-pip \
python3-lxml \
python3-requests \
python3-setuptools \
python3-vtk7 \
rsync \
vim \
clang-9 clang-tidy-9 clang-format-9 llvm-9 \
doxygen \
ffmpeg \
gcc-8 g++-8 \
gcc-9 g++-9 \
graphviz \
ipython3 jupyter-notebook jupyter-nbconvert \
libthrust-dev \
nvidia-cuda-toolkit \
python3-matplotlib \
texlive-base \
&& sudo rm -rf /var/lib/apt/lists/*
RUN pip3 install \
autopep8==1.3.4 \
pycodestyle==2.3.1 \
pylint==2.2.2 \
astroid==2.1.0 \
isort==4.3.4 \
cmake-format==0.6.9 \
pre-commit \
'sphinx>=2.0,!=2.1.0,!=3.0.0' \
sphinxcontrib-bibtex \
'MDAnalysis>=0.18' \
'pint>=0.9'