From cc90764bad25fc370d3acd7347986e146ed95bb0 Mon Sep 17 00:00:00 2001 From: zgolebiewska Date: Sun, 26 May 2024 13:59:05 +0200 Subject: [PATCH] Revert "update" This reverts commit 529e00d58f852dd6c9e6602584e3337f0831bda4. --- Dockerfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 50241b2..a472afa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM ubuntu:latest -RUN apt-get update && apt-get install -y python3-pip unzip coreutils python3-venv +RUN apt-get update && apt-get install -y python3-pip unzip coreutils + +RUN pip install kaggle pandas scikit-learn tensorflow WORKDIR /app @@ -9,9 +11,4 @@ COPY ./OrangeQualityData.csv ./ COPY ./orange_quality_model_tf.h5 ./ COPY ./predictions_tf.json ./ -RUN python3 -m venv venv -RUN /bin/bash -c "source venv/bin/activate" - -RUN apt-get install -y python3-pandas python3-scikit-learn python3-tensorflow - CMD ["python3", "data_processing.sh"]