From 3cba3998fd851263fe67e88652bc5a0147957089 Mon Sep 17 00:00:00 2001 From: shivamdesai04 <101665374+shivamdesai04@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:15:42 -0700 Subject: [PATCH 1/2] added useful modules --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 509f1f2..8d8edb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,6 +40,9 @@ ADD src/requirements.txt . # Istall Python basic libraries RUN python3 -m pip install --no-cache-dir -r requirements.txt +RUN python3 -m pip install numpy +RUN python3 -m pip install sckit-learn + # Setup a user to match the host and reduce the frustration/confusion of file ownership ARG USERNAME=ubuntu ARG USER_UID=1000 From 1f34f5a002bc5796d28371c7a59ca2d44e2a56ca Mon Sep 17 00:00:00 2001 From: shivamdesai04 <101665374+shivamdesai04@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:39:32 -0700 Subject: [PATCH 2/2] init2 --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d8edb5..7a08ca4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,6 @@ ADD src/requirements.txt . RUN python3 -m pip install --no-cache-dir -r requirements.txt RUN python3 -m pip install numpy -RUN python3 -m pip install sckit-learn # Setup a user to match the host and reduce the frustration/confusion of file ownership ARG USERNAME=ubuntu