update d and j
This commit is contained in:
parent
5b10aacaba
commit
73d961db3b
12
Dockerfile
12
Dockerfile
@ -4,9 +4,15 @@ RUN apt-get update && \
|
||||
apt-get install -y python3.10 python3-pip && \
|
||||
pip3 install --upgrade pip
|
||||
|
||||
RUN pip3 install --user kaggle
|
||||
RUN pip3 install --user pandas
|
||||
RUN pip3 install --user scikit-learn
|
||||
#RUN pip3 install --user kaggle
|
||||
#RUN pip3 install --user pandas
|
||||
#RUN pip3 install --user scikit-learn
|
||||
|
||||
RUN apt install python3.10-venv
|
||||
RUN apt install python3.10-venv -y
|
||||
#RUN python3 -m venv docker_ium
|
||||
|
||||
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -9,7 +9,12 @@ pipeline {
|
||||
steps {
|
||||
echo ("set up venv")
|
||||
|
||||
|
||||
sh "python3 -m venv docker_ium"
|
||||
sh "source docker_ium/bin/activate"
|
||||
sh "pip3 install kaggle"
|
||||
sh "pip3 install pandas"
|
||||
sh "pip3 install -U scikit-learn"
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user