Skip to content

Commit

Permalink
mamba docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
joglekara committed Nov 2, 2024
1 parent 796286e commit ace8472
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down

0 comments on commit ace8472

Please sign in to comment.