This commit is contained in:
Jakub Zaręba 2023-05-10 16:51:23 +02:00
parent 48a95ce283
commit 5cf527a9a6

View File

@ -3,7 +3,10 @@ pipeline {
docker { docker {
image 'python:3.11' image 'python:3.11'
args '-v /root/.cache:/root/.cache' args '-v /root/.cache:/root/.cache'
command 'sh', '-c', 'pip install pandas && tail -f /dev/null' script {
// sh 'python3 train.py ${params.EPOCHS}'
sh 'pip install pandas && tail -f /dev/null'
}
} }
} }
parameters { parameters {