From ace84724783ce0439e17740275f8b8f777626661 Mon Sep 17 00:00:00 2001 From: archis Date: Sat, 2 Nov 2024 12:26:25 -0400 Subject: [PATCH] mamba docker image --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ea6699..fff652f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,17 @@ # base image -FROM python:3.12-slim +FROM mambaorg:micromamba COPY requirements.txt . COPY tsadar_app.py . EXPOSE 8501 -# install git and gcc -RUN apt-get update && apt-get install -y git gcc +# install git and gcc and hdf +# RUN apt-get update && apt-get install -y git # install pip then packages RUN pip3 install --upgrade pip +RUN mamba install -y -c pyhdf RUN pip3 install -r requirements.txt CMD streamlit run tsadar.py \