Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dockers/docker-sonic-mgmt/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apt-get update && apt-get install -y build-essential \
vim

RUN pip install cffi==1.10.0 \
"cryptography>=2.5" \
cryptography==3.3.2 \
"future>=0.16.0" \
gitpython \
ipaddr \
Expand Down Expand Up @@ -167,10 +167,10 @@ RUN mkdir bin && ln -s /usr/bin/az bin/az

# Install Virtual Environments
RUN python -m virtualenv --system-site-packages env-201811
RUN env-201811/bin/pip install ansible==2.0.0.2
RUN env-201811/bin/pip install cryptography==3.3.2 ansible==2.0.0.2

RUN python3 -m venv env-python3
RUN env-python3/bin/pip3 install azure-kusto-data azure-kusto-ingest defusedxml pytest
RUN env-python3/bin/pip3 install cryptography==3.3.2 azure-kusto-data azure-kusto-ingest defusedxml pytest

# NOTE: There is an ordering dependency for pycryptodome. Leaving this at
# the end until we figure that out.
Expand Down