docker-v3

This commit is contained in:
s434732 2021-04-11 09:44:23 +02:00
parent 1fb599bc03
commit e36cdc9e13
2 changed files with 6 additions and 2 deletions

View File

@ -13,5 +13,7 @@ WORKDIR /app
COPY ./skrypt_download.py ./
COPY ./skrypt_stat.py ./
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle

6
Jenkinsfile vendored
View File

@ -24,11 +24,13 @@ node {
checkout scm
def image = docker.build("image")
def image = docker.build("s434732/ium")
image.inside {
sh 'cat /etc/issue'
sh 'python3 ./skrypt_download.py'
archiveArtifacts "train"
archiveArtifacts "test"
archiveArtifacts "valid"
}