update jenkinsfile and dockerfile
This commit is contained in:
parent
587ef6ece0
commit
01b5a10b43
@ -12,6 +12,7 @@ RUN apt-get install unzip
|
|||||||
RUN mkdir root/.kaggle
|
RUN mkdir root/.kaggle
|
||||||
RUN touch root/.kaggle/kaggle.json
|
RUN touch root/.kaggle/kaggle.json
|
||||||
RUN echo "{\"username\":\"maciejczajka\",\"key\":\"d8f044ad2b96d32372e22f9054c02bb1\"}" >> root/.kaggle/kaggle.json
|
RUN echo "{\"username\":\"maciejczajka\",\"key\":\"d8f044ad2b96d32372e22f9054c02bb1\"}" >> root/.kaggle/kaggle.json
|
||||||
|
RUN chmod 666 /.kaggle
|
||||||
RUN chmod 666 root/.kaggle/kaggle.json
|
RUN chmod 666 root/.kaggle/kaggle.json
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
@ -21,7 +22,7 @@ ENV CUTOFF=1000
|
|||||||
COPY download.sh .
|
COPY download.sh .
|
||||||
COPY Zajecia_2/main.py .
|
COPY Zajecia_2/main.py .
|
||||||
|
|
||||||
RUN chmod 666 /.kaggle
|
|
||||||
RUN ls -al /root/.kaggle/kaggle.json
|
RUN ls -al /root/.kaggle/kaggle.json
|
||||||
RUN ./download.sh
|
RUN whoami
|
||||||
CMD ["python3", "./main.py"]
|
#RUN ./download.sh
|
||||||
|
#CMD ["python3", "./main.py"]
|
||||||
|
@ -5,6 +5,7 @@ agent {
|
|||||||
stages {
|
stages {
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
|
sh 'whoami'
|
||||||
sh './download.sh'
|
sh './download.sh'
|
||||||
sh 'python3 ./Zajecia_2/main.py'
|
sh 'python3 ./Zajecia_2/main.py'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user