11 lines
300 B
Docker
11 lines
300 B
Docker
FROM eoelab.org:1027/eoeair/jupyter:py-c
|
|
|
|
# Install Python 3 packages
|
|
RUN pip install \
|
|
# Data analysis and visualization
|
|
'matplotlib' \
|
|
# Scientific calculations and statistical analysis
|
|
'numpy' &&\
|
|
pip cache purge && \
|
|
MPLBACKEND=Agg python -c "import matplotlib.pyplot"
|