Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
[CI] Fix cryptography install error (#5298)
Browse files Browse the repository at this point in the history
* Fix cryptography install error

* use cryptography 3.2

* use cachetools 3.1.1
  • Loading branch information
yiyione authored Feb 8, 2021
1 parent cbb9934 commit eeca990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dev-box/build/dev-box.common.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN apt-get -y update && \
net-tools && \
mkdir -p /cluster-configuration &&\
git clone https://github.com/Microsoft/pai.git &&\
pip install bcrypt==3.1.7 dnspython==1.16.0 python-etcd docker kubernetes==12.0.0 paramiko==2.6.0 GitPython==2.1.15 jsonschema attrs dicttoxml beautifulsoup4 future setuptools==44.1.0 &&\
pip install bcrypt==3.1.7 dnspython==1.16.0 python-etcd docker kubernetes==12.0.0 paramiko==2.6.0 cryptography==3.2 cachetools==3.1.1 GitPython==2.1.15 jsonschema attrs dicttoxml beautifulsoup4 future setuptools==44.1.0 &&\
python -m easy_install --upgrade pyOpenSSL && \
pip3 install kubernetes==12.0.0 jinja2

Expand Down Expand Up @@ -110,7 +110,7 @@ RUN rm -rf /tmp/*

WORKDIR /

# checkout to latest OpenPAI release version by default
# checkout to latest OpenPAI release version by default
# checkout to assigned branch if assigned
COPY build/start-script.sh /usr/local
RUN chmod u+x /usr/local/start-script.sh
Expand Down

0 comments on commit eeca990

Please sign in to comment.