remove sh script

This commit is contained in:
s444417 2022-04-06 19:06:58 +02:00
parent b2b3ec453b
commit 591571c3a9
2 changed files with 5 additions and 3 deletions

View File

@ -12,7 +12,7 @@ RUN python3 -m pip install pandas
WORKDIR /app
COPY ./Participants_Data_HPP ./
COPY ./Participants_Data_HPP ./Participants_Data_HPP
COPY ./startscript1.sh ./
COPY ./src/task1python.py ./src/task1python.py
COPY ./src/pythonTest.py ./src/pythonTest.py
@ -20,3 +20,5 @@ COPY ./src/pythonTest.py ./src/pythonTest.py
RUN chmod +x ./startscript1.sh
RUN chmod +x ./src/task1python.py
RUN chmod +x ./src/pythonTest.py
CMD python3 ./src/task1python.py

2
Jenkinsfile vendored
View File

@ -26,7 +26,7 @@ pipeline {
stage("Shell Scripts") {
steps {
// sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
sh 'python3 ./src/task1python.py'
// sh 'python3 ./src/task1python.py'
archiveArtifacts 'data.txt'
}
}