11 lines
300 B
Docker
Raw Permalink Normal View History

2024-12-25 16:31:30 +08:00
FROM eoelab.org:1027/eoeair/jupyter:py-c
2024-03-17 15:40:43 +08:00
# Install Python 3 packages
2024-04-11 22:39:05 +08:00
RUN pip install \
2024-03-17 15:40:43 +08:00
# Data analysis and visualization
2024-09-26 02:23:46 +08:00
'matplotlib' \
2024-03-17 15:40:43 +08:00
# Scientific calculations and statistical analysis
2024-09-26 02:23:46 +08:00
'numpy' &&\
2024-04-11 22:39:05 +08:00
pip cache purge && \
MPLBACKEND=Agg python -c "import matplotlib.pyplot"