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
7 changes: 2 additions & 5 deletions dockers/docker-sonic-mgmt/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ RUN apt-get update && apt-get install -y build-essential \
python \
python-dev \
python-scapy \
python-setuptools \
python-pip \
python3-pip \
python3-venv \
Expand All @@ -33,6 +32,7 @@ RUN apt-get update && apt-get install -y build-essential \
telnet \
vim

RUN pip install setuptools==44.1.1
RUN pip install cffi==1.10.0 \
contextlib2==0.6.0.post1 \
cryptography==3.3.2 \
Expand Down Expand Up @@ -74,6 +74,7 @@ RUN pip install cffi==1.10.0 \
virtualenv \
retry \
thrift==0.11.0 \
allure-pytest==2.8.22 \
&& git clone https://github.com/p4lang/scapy-vxlan.git \
&& cd scapy-vxlan \
&& python setup.py install \
Expand Down Expand Up @@ -182,10 +183,6 @@ RUN python3 -m venv env-python3
# the end until we figure that out.
RUN pip install pycryptodome==3.9.8

# Install allure-pytest library
RUN pip install --upgrade setuptools \
&& pip install allure-pytest==2.8.22

# Activating a virtualenv. The virtualenv automatically works for RUN, ENV and CMD.
ENV VIRTUAL_ENV=env-python3
ARG BACKUP_OF_PATH="$PATH"
Expand Down