From 69f89a40929d33b6bd25755318bd369e954e9e06 Mon Sep 17 00:00:00 2001 From: Yevhenii Poliakov Date: Thu, 11 May 2023 22:43:22 +0200 Subject: [PATCH] update dockerfile --- Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eef0016..110908e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,5 +10,13 @@ RUN pip3 install --user kaggle pandas COPY . /app WORKDIR /app -CMD ./script1 +RUN apt install python3.10-venv +RUN python3 -m venv docker_ium +RUN source docker_ium/bin/activate + +RUN pip3 install pandas +RUN pip3 install -U scikit-learn + + +#CMD python3 script2.py