Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2021-02-03 23:03:09 +0300
committerGitHub <noreply@github.com>2021-02-03 23:03:09 +0300
commit13af3f7ec21a689a6235006d2f97664bc8789a5f (patch)
tree1915629955b9f3c42713a61c8af84f5ee0b30bdb /certbot-compatibility-test
parent5ad0c254cacd58395b888fe23f6046881500b854 (diff)
Cleanup venv scripts (#8629)
Fixes https://github.com/certbot/certbot/issues/8387. * update _venv_common.py * delete venv.py scripts * rename venv script * update relevant venv3 references * remove set_python_envvars
Diffstat (limited to 'certbot-compatibility-test')
-rw-r--r--certbot-compatibility-test/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/certbot-compatibility-test/Dockerfile b/certbot-compatibility-test/Dockerfile
index f66e4c945..e0a439d01 100644
--- a/certbot-compatibility-test/Dockerfile
+++ b/certbot-compatibility-test/Dockerfile
@@ -8,11 +8,11 @@ RUN apt-get update && \
WORKDIR /opt/certbot/src
# We copy all contents of the build directory to allow us to easily use
-# things like tools/venv3.py which expects all of our packages to be available.
+# things like tools/venv.py which expects all of our packages to be available.
COPY . .
-RUN tools/venv3.py
-ENV PATH /opt/certbot/src/venv3/bin:$PATH
+RUN tools/venv.py
+ENV PATH /opt/certbot/src/venv/bin:$PATH
# install in editable mode (-e) to save space: it's not possible to
# "rm -rf /opt/certbot/src" (it's stays in the underlaying image);