Skip to content

Commit 94a5460

Browse files
committed
Do not creating venv in dockderfile
1 parent c19936c commit 94a5460

File tree

4 files changed

+0
-19
lines changed

4 files changed

+0
-19
lines changed

python/python/Dockerfile.python3.10

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,3 @@ RUN set -eux; \
111111
ln -svT "$src" "/usr/local/bin/$dst"; \
112112
done
113113

114-
115-
# We create the virtual environment in the home directory in the Dockerfile
116-
# for performance improvement.
117-
RUN python -m venv --system-site-packages ~/venv

python/python/Dockerfile.python3.11

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,3 @@ RUN set -eux; \
110110
ln -svT "$src" "/usr/local/bin/$dst"; \
111111
done
112112

113-
114-
# We create the virtual environment in the home directory in the Dockerfile
115-
# for performance improvement.
116-
RUN python -m venv --system-site-packages ~/venv

python/python/Dockerfile.python3.8

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,3 @@ RUN set -eux; \
109109
[ ! -e "/usr/local/bin/$dst" ]; \
110110
ln -svT "$src" "/usr/local/bin/$dst"; \
111111
done
112-
113-
114-
115-
# We create the virtual environment in the home directory in the Dockerfile
116-
# for performance improvement.
117-
RUN python -m venv --system-site-packages ~/venv

python/python/Dockerfile.python3.9

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,3 @@ RUN set -eux; \
109109
[ ! -e "/usr/local/bin/$dst" ]; \
110110
ln -svT "$src" "/usr/local/bin/$dst"; \
111111
done
112-
113-
114-
# We create the virtual environment in the home directory in the Dockerfile
115-
# for performance improvement.
116-
RUN python -m venv --system-site-packages ~/venv

0 commit comments

Comments
 (0)