File: Dockerfile

package info (click to toggle)
python-dynasor 2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,008 kB
  • sloc: python: 5,263; sh: 20; makefile: 3
file content (55 lines) | stat: -rw-r--r-- 968 bytes parent folder | download
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
# Base image
FROM python:3.9

# 1. Base packages
# 2. Packages for testing
# 3. Packages needed for icet
# 4. Packages for setting up documentation
RUN \
  apt-get update -qy && \
  apt-get upgrade -qy && \
  apt-get install -qy \
    doxygen \
    graphviz \
    pandoc \
    zip
# Packages for testing
# Packages needed for icet
# Packages for building documentation
RUN \
  pip3 install --upgrade \
    pip \
  && \
  pip3 install --upgrade \
    coverage \
    flake8 \
    flake8-quotes \
    mypy \
    pytest \
    twine \
    xdoctest \
  && \
  pip3 install --upgrade \
    ase \
    MDAnalysis \
    mip \
    numba \
    numpy \
    pandas \
    scikit-learn \
    scipy \
    spglib \
  && \
  pip3 install --upgrade \
    breathe \
    cloud_sptheme \
    IPython \
    sphinx==5.3.0 \
    sphinx-rtd-theme \
    sphinx_sitemap \
    sphinxcontrib-bibtex \
    sphinx-autodoc-typehints \
    nbsphinx \
  && \
  pip3 install --upgrade \
    jinja2==3.0.3