Fix Jenkinsfile

This commit is contained in:
s487179 2023-06-13 20:12:38 +02:00
parent 814bf420bf
commit 9726627f37
2 changed files with 6 additions and 1 deletions

View File

@ -21,6 +21,11 @@ pipeline {
selector: buildParameter('BUILD_SELECTOR'),
target: './MLEvaluate'
)
copyArtifacts(
projectName: 'z-s487179-create-dataset',
selector: buildParameter('BUILD_SELECTOR'),
target: './MLEvaluate'
)
}
}
}

View File

@ -3,4 +3,4 @@ FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y python3-pip python3-dev && \
apt-get install -y build-essential && \
pip3 install pandas kaggle seaborn scikit-learn torch \
pip3 install pandas kaggle seaborn scikit-learn torch matplotlib \