Use python3
esbo_ds/ESBO-ETC/pipeline/head There was a failure building this commit Details

This commit is contained in:
Lukas Klass 2020-07-21 13:34:07 +02:00
parent fe75016e96
commit a611257dbb
2 changed files with 3 additions and 4 deletions

View File

@ -2,9 +2,8 @@ FROM debian
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
texlive
python3-pip
RUN pip install virtualenv
RUN pip3 install virtualenv
CMD ["/bin/bash"]

2
Jenkinsfile vendored
View File

@ -19,7 +19,7 @@ pipeline {
sh '''
virtualenv pyenv
. pyenv/bin/activate
pip install -r requirements.txt
pip3 install -r requirements.txt
'''
}
}