4.3.1 v17

This commit is contained in:
piotrwrzodak 2023-05-11 23:30:37 +02:00
parent 885a138d19
commit f7468f52b7
2 changed files with 2 additions and 8 deletions

View File

@ -4,10 +4,3 @@ RUN apt-get update && \
apt-get install -y python3 python3-pip
RUN pip3 install pandas numpy
WORKDIR /app
COPY create-dataset.py /app
COPY barcelona_weekends.csv /app
CMD ["python3", "create-dataset.py"]

View File

@ -47,7 +47,8 @@ pipeline {
}
}
steps {
archiveArtifacts artifacts: 'barcelona_weekends.train.csv, barcelona_weekends.dev.csv, barcelona_weekends.test.csv', fingerprint: true
sh 'python3 create-dataset.py'
archiveArtifacts artifacts: 'barcelona_weekends.train.csv, barcelona_weekends.dev.csv, barcelona_weekends.test.csv', fingerprint: true
}
}
}