Jenkins + Docker

This commit is contained in:
Paweł Skórzewski 2024-04-10 08:52:39 +02:00
parent be8d422070
commit 5568140d3f
2 changed files with 4 additions and 6 deletions

View File

@ -1,5 +1,3 @@
FROM ubuntu:latest
FROM node:20.11.1-alpine3.19
RUN apt update && apt install -y python3-pip
RUN pip3 install --user datasets kaggle
RUN pip3 list
RUN apk add -U subversion

4
Jenkinsfile vendored
View File

@ -3,8 +3,8 @@ pipeline {
stages {
stage('Test') {
steps {
sh 'pip3 --version'
sh 'pip3 list'
sh 'node --version'
sh 'svn --version'
}
}
}