Revert "Update Jenkinsfile and Dockerfile"

This reverts commit 5a4b79b5d5.
This commit is contained in:
zgolebiewska 2024-05-26 13:59:10 +02:00
parent 2dc8d9e218
commit 8023d47c4b

View File

@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y \
unzip \
coreutils
RUN pip3 install kaggle pandas scikit-learn tensorflow
RUN pip install --user kaggle pandas scikit-learn tensorflow
WORKDIR /app
@ -14,6 +14,6 @@ COPY ./model.py ./
COPY ./OrangeQualityData.csv ./
COPY ./requirements.txt ./
RUN pip3 install -r requirements.txt
RUN pip install --user -r requirements.txt
CMD ["python3", "model.py"]