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 apk add -U subversion
RUN pip3 install --user datasets kaggle
RUN pip3 list

4
Jenkinsfile vendored
View File

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