Fix
This commit is contained in:
parent
44bdf21d7d
commit
0805eff1fa
36
Dockerfile
36
Dockerfile
@ -1,36 +1,10 @@
|
|||||||
# FROM ubuntu:latest
|
|
||||||
|
|
||||||
# RUN apt update && apt upgrade -y
|
|
||||||
# RUN apt install -y python3 python3-pip
|
|
||||||
# RUN pip3 install --upgrade pip
|
|
||||||
# RUN pip3 install datasets pandas numpy scikit-learn
|
|
||||||
|
|
||||||
# ENV HF_HOME="/tmp/huggingface"
|
|
||||||
# ENV PATH="/root/.local/bin:$PATH"
|
|
||||||
|
|
||||||
# WORKDIR /app
|
|
||||||
|
|
||||||
# COPY . /app
|
|
||||||
|
|
||||||
FROM ubuntu:latest
|
FROM ubuntu:latest
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt update && apt upgrade -y
|
||||||
&& apt-get install -y git python3 python3-pip curl \
|
RUN apt install -y python3 python3-pip
|
||||||
&& curl -O https://bootstrap.pypa.io/get-pip.py \
|
RUN pip3 install --upgrade pip
|
||||||
&& python3 get-pip.py --user \
|
RUN pip3 install datasets pandas numpy scikit-learn
|
||||||
&& rm get-pip.py \
|
|
||||||
&& pip install --user kaggle \
|
|
||||||
&& pip install --user pandas \
|
|
||||||
&& pip install --user plotly \
|
|
||||||
&& pip install --user seaborn \
|
|
||||||
&& pip install --user scikit-learn
|
|
||||||
|
|
||||||
ENV PATH="/root/.local/bin:$PATH"
|
ENV HF_HOME="/tmp/huggingface"
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY . /app
|
|
||||||
|
|
||||||
#RUN git clone https://git.wmi.amu.edu.pl/s487178/ium_s487178.git /app
|
|
||||||
|
|
||||||
#CMD ["python3", "body_performance.py"]
|
|
||||||
|
50
dataset-stats/Jenkinsfile
vendored
50
dataset-stats/Jenkinsfile
vendored
@ -1,40 +1,28 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
docker { image 's487185/inzynieria-uczenia-maszynowego:2.0' }
|
dockerfile true
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Test') {
|
stage('Checkout') {
|
||||||
steps {
|
steps {
|
||||||
sh 'cat /etc/issue'
|
checkout scm
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Copy artifacts') {
|
||||||
|
steps {
|
||||||
|
copyArtifacts projectName: 'z-s487185-create-dataset', selector: lastSuccessful()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Docker script') {
|
||||||
|
steps {
|
||||||
|
sh 'python3 dataset-stats/main.py > dataset-stats.txt'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Save results') {
|
||||||
|
steps {
|
||||||
|
archiveArtifacts 'dataset-stats.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// pipeline {
|
|
||||||
// agent {
|
|
||||||
// docker { image 's487185/inzynieria-uczenia-maszynowego:1.0' }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// stages {
|
|
||||||
// stage('Checkout') {
|
|
||||||
// steps {
|
|
||||||
// checkout scm
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// stage('Copy artifacts') {
|
|
||||||
// steps {
|
|
||||||
// copyArtifacts projectName: 'z-s487185-create-dataset', selector: lastSuccessful()
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// stage('Docker script') {
|
|
||||||
// steps {
|
|
||||||
// sh 'python3 dataset-stats/main.py > dataset-stats.txt'
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// stage('Save results') {
|
|
||||||
// steps {
|
|
||||||
// archiveArtifacts 'dataset-stats.txt'
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
Loading…
Reference in New Issue
Block a user