test
Some checks failed
s434695-training/pipeline/head There was a failure building this commit

This commit is contained in:
s434695 2021-05-16 20:58:24 +02:00
parent d30489e817
commit 101850ba06
2 changed files with 6 additions and 4 deletions

View File

@ -19,4 +19,8 @@ RUN pip3 install --user keras
RUN pip3 install --user GitPython
RUN pip3 install --user pymongo
WORKDIR /app
COPY ./train.py ./
CMD ./train.py

6
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
pipeline {
agent any;
agent { dockerfile true }
parameters{
buildSelector(
@ -31,9 +31,7 @@ pipeline {
{
steps
{
withDockerContainer('shroomy/ium2:2') {
sh 'python3 train.py ${BATCH_SIZE} ${EPOCHS}'
}
sh 'python3 train.py ${BATCH_SIZE} ${EPOCHS}'
}
}