File tree 2 files changed +27
-236
lines changed
2 files changed +27
-236
lines changed Original file line number Diff line number Diff line change 5
5
# STEP 1 - Base image
6
6
FROM jupyter/base-notebook
7
7
8
- # STEP 2 & 3 - Label and environment file
8
+ # STEP 2 - Label
9
9
LABEL maintainer=
"Felix Soubelet <[email protected] >"
10
- COPY docker/environment.yml /home/jovyan/environment.yml
11
10
12
- # STEP 4 - Create the PHD conda environment
13
- RUN conda env create --file ./environment.yml --force \
14
- && /opt/conda/bin/conda clean --all --quiet --yes \
15
- && /opt/conda/envs/PHD/bin/ipython kernel install --user --name=PHD
11
+ # STEP 3 - Let mamba install packages
12
+ RUN mamba install --yes \
13
+ black \
14
+ click \
15
+ fastparquet \
16
+ h5py \
17
+ hdf5 \
18
+ ipykernel \
19
+ isort \
20
+ joblib \
21
+ loguru \
22
+ matplotlib \
23
+ numpy \
24
+ pandas \
25
+ pendulum \
26
+ pyarrow \
27
+ pydantic \
28
+ requests \
29
+ rich \
30
+ scikit-learn \
31
+ sdds \
32
+ sympy \
33
+ tfs-pandas \
34
+ scipy && \
35
+ python -m pip install pyhdtoolkit pynaff && \
36
+ conda clean --all --quiet --yes \
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments