From 47da5459a75f30c9eea88aa627011345d5ab20b5 Mon Sep 17 00:00:00 2001 From: Maciej Sobkowiak Date: Sat, 12 Jun 2021 23:12:41 +0200 Subject: [PATCH] dvc dependency --- Dockerfile | 1 + dvc.Jenkinsfile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6308c76..aa1a9d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ RUN pip3 install tensorflow RUN pip3 install sklearn RUN pip3 install sacred RUN pip3 install pymongo +RUN pip3 install dvc WORKDIR /app diff --git a/dvc.Jenkinsfile b/dvc.Jenkinsfile index a8ad4ba..1794847 100644 --- a/dvc.Jenkinsfile +++ b/dvc.Jenkinsfile @@ -1,5 +1,7 @@ pipeline { - agent any; + agent { + dockerfile true + } stages{ stage('checkout: Check out from version control') {