This commit is contained in:
Adam Wojdyla 2022-04-02 03:14:57 +02:00
parent 972e98c9e1
commit 2eee79c2f1
2 changed files with 8 additions and 8 deletions

View File

@ -1,13 +1,14 @@
FROM ubuntu:latest
RUN apt-get update && apt-get install -y figlet python3 python3-pip unzip
RUN pip3 install --user kaggle
RUN pip3 install --user pandas
ENV PATH="/root/.local/bin:${PATH}"
WORKDIR /app
RUN apt-get update && apt-get install -y figlet python3 python3-pip unzip
RUN pip3 install kaggle
RUN pip3 install pandas
ENV PATH="/root/.local/bin:${PATH}"
COPY . .
COPY ./figlet-loop.sh ./
COPY ./download.sh ./
COPY ./script.py ./

View File

@ -26,8 +26,7 @@ pipeline {
stages {
stage('Prepare dataset') {
steps {
sh 'python3 ./script.py'
sh 'ls'
sh 'python ./script.sh'
}
}
}