Added Docker4 and Jenkins6
This commit is contained in:
parent
1ea45aca70
commit
2dba0cdfe5
31
Dockerfile_4
Normal file
31
Dockerfile_4
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# Nasz obraz będzie dzidziczył z obrazu Ubuntu w wersji latest
|
||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
|
||||||
|
RUN apt update && apt install -y figlet
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN apt-get install -y python3
|
||||||
|
RUN apt-get install -y python3-pip
|
||||||
|
RUN python3 -m pip install pandas
|
||||||
|
RUN python3 -m pip install numpy
|
||||||
|
RUN python3 -m pip install torch
|
||||||
|
RUN python3 -m pip install torchvision
|
||||||
|
RUN python3 -m pip install GitPython
|
||||||
|
RUN python3 -m pip install sacred
|
||||||
|
RUN python3 -m pip install pymongo
|
||||||
|
|
||||||
|
COPY ./zadanie1.py ./
|
||||||
|
COPY ./Customers.csv ./
|
||||||
|
COPY ./sacred_train.py ./
|
||||||
|
COPY ./test.py ./
|
||||||
|
COPY ./cifar_net.pth ./
|
||||||
|
|
||||||
|
RUN chmod +r ./Customers.csv
|
||||||
|
RUN chmod +x ./zadanie1.py
|
||||||
|
RUN chmod +x ./train.py
|
||||||
|
RUN chmod +x ./sacred_train.py
|
||||||
|
|
||||||
|
RUN dvc pull
|
||||||
|
RUN dvc repro
|
14
Jenkinsfile_6
Normal file
14
Jenkinsfile_6
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
filename "Dockerfile_4"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Archive Output') {
|
||||||
|
steps {
|
||||||
|
archiveArtifacts 'metrics.txt'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user