Skip to content

Commit b2acf77

Browse files
rc8
1 parent f842cb3 commit b2acf77

2 files changed

Lines changed: 39 additions & 2 deletions

File tree

Dockerfile_testpypi

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,50 @@
99
#
1010
# Timestamp: 2020/12/02 18:33:44 UTC
1111

12-
FROM macatools/macapype:latest
12+
FROM macatools/macapype_env:v0.3.2
1313

1414
USER root
1515

1616
ARG DEBIAN_FRONTEND="noninteractive"
1717

1818
MAINTAINER David Meunier "david.meunier@univ-amu.fr"
19+
######################## Python packages
20+
21+
RUN apt-get update && apt-get install -y git libpng-dev libfreetype6-dev libxft-dev libblas-dev liblapack-dev libatlas-base-dev gfortran libxml2-dev libxslt1-dev wget graphviz
22+
23+
RUN python -m pip install xvfbwrapper \
24+
psutil \
25+
numpy \
26+
scipy \
27+
matplotlib \
28+
statsmodels \
29+
pandas \
30+
networkx\
31+
mock \
32+
prov \
33+
click \
34+
funcsigs \
35+
pydotplus \
36+
pydot \
37+
rdflib \
38+
pbr \
39+
nibabel \
40+
packaging \
41+
pytest
42+
43+
RUN python -m pip install graphviz \
44+
pybids \
45+
nipype \
46+
nilearn \
47+
scikit-image \
48+
brain-slam
49+
50+
RUN python -m pip install SimpleITK
51+
52+
############################################# install macapype
53+
54+
RUN python -m pip install --pre macapype
55+
RUN python -c "import macapype; print(macapype.__version__)"
1956

2057
############################################# install skullTo3d
2158

skullTo3d/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.10-rc7'
1+
__version__ = '0.0.10-rc8'

0 commit comments

Comments
 (0)