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>2020-03-09 23:05:35 +0300
committerGitHub <noreply@github.com>2020-03-09 23:05:35 +0300
commit69aec55ead42c9ef9231602d002825e838e9dafb (patch)
tree20a0e19f44bf97eff623ffd36dd8b98ac6c41a45 /certbot-compatibility-test
parent7f63141e410ae7ce200c7c7408d05c87eae0c5f5 (diff)
Remove --no-site-packages outside of certbot-auto. (#7832)
Diffstat (limited to 'certbot-compatibility-test')
-rw-r--r--certbot-compatibility-test/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-compatibility-test/Dockerfile b/certbot-compatibility-test/Dockerfile
index a9996f779..a6a0c93db 100644
--- a/certbot-compatibility-test/Dockerfile
+++ b/certbot-compatibility-test/Dockerfile
@@ -31,7 +31,7 @@ COPY certbot-nginx /opt/certbot/src/certbot-nginx/
COPY certbot-compatibility-test /opt/certbot/src/certbot-compatibility-test/
COPY tools /opt/certbot/src/tools
-RUN VIRTUALENV_NO_DOWNLOAD=1 virtualenv --no-site-packages -p python2 /opt/certbot/venv && \
+RUN VIRTUALENV_NO_DOWNLOAD=1 virtualenv -p python2 /opt/certbot/venv && \
/opt/certbot/venv/bin/pip install -U setuptools && \
/opt/certbot/venv/bin/pip install -U pip
ENV PATH /opt/certbot/venv/bin:$PATH