Dockerfile

This commit is contained in:
ulaniuk 2022-06-05 10:16:10 +02:00
parent 3475b30400
commit 863563717b
2 changed files with 12 additions and 8 deletions

View File

@ -11,12 +11,14 @@ RUN apt update
RUN apt-get update
RUN apt install python3-pip -y
RUN pip install --user kaggle
RUN pip install --user pandas
RUN pip install --user sklearn
RUN pip install --user torch
RUN pip install --user tqdm
RUN pip install --user seaborn
RUN pip3 install --user kaggle
RUN pip3 install --user pandas
RUN pip3 install --user sklearn
RUN pip3 install --user torch
RUN pip3 install --user tqdm
RUN pip3 install --user seaborn
RUN pip3 install dvc
RUN pip3 install dvc[ssh] paramiko
COPY KaggleV2-May-2016.csv ./
COPY create_data.py ./

View File

@ -1,7 +1,9 @@
pipeline {
agent any
agent {
dockerfile true
}
stages {
stage('Checkout'){