Docker + Jenkins + PIP
This commit is contained in:
parent
5568140d3f
commit
8d9fe2db11
@ -1,3 +1,5 @@
|
||||
FROM node:20.11.1-alpine3.19
|
||||
FROM ubuntu:latest
|
||||
|
||||
RUN apk add -U subversion
|
||||
RUN apt update && apt install -y python3-pip
|
||||
RUN pip3 install --user datasets kaggle
|
||||
RUN pip3 list
|
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -3,8 +3,9 @@ pipeline {
|
||||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'node --version'
|
||||
sh 'svn --version'
|
||||
sh 'python3 --version'
|
||||
sh 'pip3 --verison'
|
||||
sh 'pip3 list'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user