Dockerfile
This commit is contained in:
parent
8a09b3e485
commit
28581651da
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@ -0,0 +1,18 @@
|
||||
# Nasz obraz będzie dzidziczył z obrazu Ubuntu w wersji latest
|
||||
FROM ubuntu:latest
|
||||
|
||||
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
|
||||
RUN apt update
|
||||
RUN apt install -y python3 python3-pip dos2unix
|
||||
RUN pip3 install kaggle
|
||||
RUN apt install -y unzip
|
||||
|
||||
# Stwórzmy w kontenerze (jeśli nie istnieje) katalog /app i przejdźmy do niego (wszystkie kolejne polecenia RUN, CMD, ENTRYPOINT, COPY i ADD będą w nim wykonywane)
|
||||
WORKDIR /app
|
||||
|
||||
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
|
||||
COPY ./skrypt.sh ./
|
||||
RUN chmod +x skrypt.sh
|
||||
RUN dos2unix skrypt.sh
|
||||
|
||||
CMD ./skrypt.sh 0
|
86
Jenkinsfile
vendored
86
Jenkinsfile
vendored
@ -1,46 +1,40 @@
|
||||
pipeline {
|
||||
agent any
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: '0',
|
||||
description: 'Umożliwia zdefiniowanie wielkości odcięcia zbioru danych.',
|
||||
name: 'CUTOFF',
|
||||
trim: false
|
||||
)
|
||||
string(
|
||||
defaultValue: 'rokoch',
|
||||
description: 'Kaggle username',
|
||||
name: 'KAGGLE_USERNAME',
|
||||
trim: false
|
||||
)
|
||||
password(
|
||||
defaultValue: '',
|
||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
}
|
||||
stages {
|
||||
stage('checkout') {
|
||||
steps {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s426206/ium_426206.git']]])
|
||||
}
|
||||
}
|
||||
|
||||
stage('sh') {
|
||||
steps {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
||||
sh "chmod +x skrypt.sh"
|
||||
sh "./skrypt.sh ${params.CUTOFF} | tee output.txt"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('end') {
|
||||
steps {
|
||||
//Zarchiwizuj wynik
|
||||
archiveArtifacts 'output.txt,Global_Superstore22.csv,Global_Superstore2.csv.dev,Global_Superstore2.csv.test,Global_Superstore2.csv.train'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pipeline {
|
||||
agent any
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: '0',
|
||||
description: 'Umożliwia zdefiniowanie wielkości odcięcia zbioru danych.',
|
||||
name: 'CUTOFF',
|
||||
trim: false
|
||||
)
|
||||
string(
|
||||
defaultValue: 'rokoch',
|
||||
description: 'Kaggle username',
|
||||
name: 'KAGGLE_USERNAME',
|
||||
trim: false
|
||||
)
|
||||
password(
|
||||
defaultValue: '',
|
||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
}
|
||||
stages {
|
||||
stage('checkout') {
|
||||
steps {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s426206/ium_426206.git']]])
|
||||
}
|
||||
}
|
||||
|
||||
stage('docker') {
|
||||
agent { dockerfile true }
|
||||
steps {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
||||
sh "chmod +x skrypt.sh"
|
||||
sh "./skrypt.sh ${params.CUTOFF} | tee output.txt"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
kaggle datasets download -d apoorvaappz/global-super-store-dataset
|
||||
unzip -o global-super-store-dataset.zip
|
||||
if [ $1 = "0" ]; then
|
||||
if [[ $1 = "0" ]]; then
|
||||
CUTOFF=51291
|
||||
cp Global_Superstore2.csv Global_Superstore22.csv
|
||||
else
|
||||
@ -16,4 +16,4 @@ head -n $((prop1*2)) Global_Superstore2.csv.shuf | tail -n $prop1 > Global_Super
|
||||
tail -n +$((prop1*2+1)) Global_Superstore2.csv.shuf > Global_Superstore2.csv.train
|
||||
rm Global_Superstore2.csv.shuf
|
||||
#Sprawdźmy, czy wielkości się zgadzają:
|
||||
wc -l Global_Superstore2*
|
||||
wc -l Global_Superstore2*
|
||||
|
Loading…
Reference in New Issue
Block a user