Skip to content

Commit

Permalink
python3.11 dockerfile added
Browse files Browse the repository at this point in the history
  • Loading branch information
basaks committed Apr 22, 2024
1 parent 21bd10c commit edb5dff
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Dockerfile3p11
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
FROM python:3.11-slim
MAINTAINER Sudipta Basak <[email protected]>

WORKDIR /usr/src/uncover-ml

RUN apt update && apt upgrade -y
RUN apt-get install -y --no-install-recommends \
make \
gcc \
libc6-dev \
libopenblas-dev \
libgdal-dev \
libhdf5-dev


RUN apt install git openmpi-bin libopenmpi-dev -y \
&& g++ \
&& rm -rf /var/lib/apt/lists/* \
&& alias pip=pip3

RUN pip install -U pip

# RUN ./cubist/makecubist .
# RUN pip install -e .[dev]

0 comments on commit edb5dff

Please sign in to comment.