Fix entrypoint.sh / docker-compose up. (#4747)

We no longer use virtualenv; we just install our Python dependencies
globally.
This commit is contained in:
Jacob Hoffman-Andrews 2020-04-07 11:35:42 -07:00 committed by GitHub
parent 5af7541c85
commit aad43e4688
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -53,10 +53,6 @@ if [ -n "${PKCS11_PROXY_SOCKET:-}" ]; then
fi
if [[ $# -eq 0 ]]; then
# the activate script touches PS1, which is undefined, so we have to relax
# the "fail on undefined" setting here.
set +u
source ${CERTBOT_PATH:-/certbot}/${VENV_NAME:-venv3}/bin/activate
exec python3 ./start.py
fi