Skip to content

Commit

Permalink
added leuko expert image
Browse files Browse the repository at this point in the history
  • Loading branch information
migraf committed Mar 17, 2022
1 parent 88b0552 commit 0777151
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
9 changes: 9 additions & 0 deletions data/leuko-expert/base/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.9

RUN apt-get update -yqq && \
apt-get dist-upgrade -yqq && \
apt-get install -yqq git

COPY requirements.txt /tmp/requirements.txt

RUN pip3 install -r /tmp/requirements.txt
6 changes: 6 additions & 0 deletions data/leuko-expert/base/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
minio
numpy
pandas
neurolab
scikit-learn
missingpy
6 changes: 6 additions & 0 deletions data/leuko-expert/image-group.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"id": "leuko-expert",
"name": "Leuko Expert",
"command": "python",
"commandArguments": []
}
1 change: 1 addition & 0 deletions data/python/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ RUN apt -y update && apt-get -y install software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa && apt -y update && \
apt-get install -y python3.9 git && apt install python-is-python3 && apt install -y python3-pip
RUN pip3 install git+https://github.com/PHT-Medic/train-container-library.git

3 changes: 1 addition & 2 deletions data/python/ml/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ FROM python:3.9

RUN apt-get update -yqq && \
apt-get dist-upgrade -yqq && \
apt-get install -yqq git && \
pip3 install git+https://github.com/PHT-Medic/train-container-library.git
apt-get install -yqq git

COPY requirements.txt /tmp/requirements.txt

Expand Down

0 comments on commit 0777151

Please sign in to comment.