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

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 \ RUN apt-get update && apt-get install -y \
python3 \ python3 \
python3-pip \ python3-pip
texlive
RUN pip install virtualenv RUN pip3 install virtualenv
CMD ["/bin/bash"] CMD ["/bin/bash"]

2
Jenkinsfile vendored
View File

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