2025-02-20 21:41:34 +08:00

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"