Attempt 10
This commit is contained in:
parent
594ca50862
commit
ca353acfa6
@ -1,11 +1,8 @@
|
|||||||
FROM python:3.10
|
FROM python:3.10
|
||||||
|
|
||||||
RUN apt update && apt install -y python3-pip
|
RUN apt update && apt install -y python3-pip
|
||||||
RUN pip3 install datasets kaggle
|
RUN pip3 install datasets kaggle
|
||||||
|
WORKDIR /root
|
||||||
WORKDIR /app
|
RUN mkdir -p /root/.kaggle && chmod 600 /root/.kaggle
|
||||||
|
|
||||||
VOLUME ["/app/.kaggle"]
|
|
||||||
|
|
||||||
# COPY ./create-dataset.py ./
|
# COPY ./create-dataset.py ./
|
||||||
|
|
||||||
|
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
@ -1,8 +1,8 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
dockerfile true
|
dockerfile true
|
||||||
}
|
}
|
||||||
parameters {
|
parameters {
|
||||||
string (
|
string (
|
||||||
defaultValue: 'my_username',
|
defaultValue: 'my_username',
|
||||||
description: 'Kaggle username',
|
description: 'Kaggle username',
|
||||||
@ -15,10 +15,6 @@ pipeline {
|
|||||||
name: 'KAGGLE_KEY'
|
name: 'KAGGLE_KEY'
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
volumes {
|
|
||||||
hostPath("~/.kaggle")
|
|
||||||
containerPath("/app/.kaggle")
|
|
||||||
}
|
|
||||||
stages {
|
stages {
|
||||||
stage('Kaggle') {
|
stage('Kaggle') {
|
||||||
steps {
|
steps {
|
||||||
@ -31,4 +27,4 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user