Remove Python3 venv in Python3-only sonic-mgmt-docker (#17337)

How I did it
Remove Python3 venv in Python3-only sonic-mgmt-docker

How to verify it
There is no impact to sonic-mgmt-docker:latest tag.
Build sonic-mgmt-docker with LEGACY_SONIC_MGMT_DOCKER=y, see python3 venv is there.
Build sonic-mgmt-docker with LEGACY_SONIC_MGMT_DOCKER=n, see python3 venv is NOT included.
This commit is contained in:
ShiyanWangMS 2023-11-30 09:23:25 +08:00 committed by GitHub
parent f13081bfbd
commit eba6ef0aa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -261,6 +261,7 @@ WORKDIR /var/$user
# Add az symlink for backwards compatibility
RUN mkdir bin && ln -s /usr/bin/az bin/az
{% if legacy == 'y' or legacy == '1' %}
RUN python3 -m venv --system-site-packages env-python3
# Activating a virtualenv. The virtualenv automatically works for RUN, ENV and CMD.
@ -341,6 +342,7 @@ RUN python3 -m pip install aiohttp \
# Deactivating a virtualenv
ENV PATH="$BACKUP_OF_PATH"
{% endif %}
USER root
WORKDIR /azp