add Dockerfile and change agent
This commit is contained in:
parent
d3e681fe33
commit
f0730957eb
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM ubuntu:latest
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y python3-pip
|
||||
|
||||
RUN pip3 install --user kaggle pandas
|
||||
|
||||
ENV PATH="/root/.local/bin:${PATH}"
|
||||
|
||||
COPY data_processing.sh .
|
||||
|
||||
WORKDIR .
|
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -1,5 +1,7 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
dockerfile true
|
||||
}
|
||||
|
||||
parameters {
|
||||
string(
|
||||
|
Loading…
Reference in New Issue
Block a user