From 5a4b79b5d5ce2d7081f3ee2fe7f43114daa1fa35 Mon Sep 17 00:00:00 2001 From: zgolebiewska Date: Sun, 26 May 2024 12:53:57 +0200 Subject: [PATCH] Update Jenkinsfile and Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 828f0b6..c9fb8ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y \ unzip \ coreutils -RUN pip install --user kaggle pandas scikit-learn tensorflow +RUN pip3 install kaggle pandas scikit-learn tensorflow WORKDIR /app @@ -14,6 +14,6 @@ COPY ./model.py ./ COPY ./OrangeQualityData.csv ./ COPY ./requirements.txt ./ -RUN pip install --user -r requirements.txt +RUN pip3 install -r requirements.txt CMD ["python3", "model.py"]