install python3 - use dockerfile

This commit is contained in:
s407323 2019-04-26 13:18:27 +02:00
parent 8acd0079b0
commit 29a0fff311
2 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,8 @@ FROM ubuntu:latest
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
RUN apt install -y python3
RUN apt install -y python-pandas
RUN gcc --version
RUN apt install -y build-essential
RUN git clone https://github.com/usnistgov/SCTK.git

1
Jenkinsfile vendored
View File

@ -30,6 +30,7 @@ pipeline {
stage('Zadanie 3 - Metryki') {
steps {
sh 'python3 --version'
sh 'python3 ./zadanie3/script.py'
}
}