mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
Add comments
This commit is contained in:
parent
3bbc45de73
commit
315206ca1e
2 changed files with 7 additions and 0 deletions
|
|
@ -14,6 +14,9 @@ WORKDIR /opt/certbot
|
|||
|
||||
# Copy certbot code
|
||||
COPY CHANGELOG.md README.rst src/
|
||||
# We keep the relative path to the requirements file the same because, as of
|
||||
# writing this, tools/pip_install.py is used in the Dockerfile for Certbot
|
||||
# plugins and this script expects to find the requirements file there.
|
||||
COPY letsencrypt-auto-source/pieces/dependency-requirements.txt letsencrypt-auto-source/pieces/
|
||||
COPY tools tools
|
||||
COPY acme src/acme
|
||||
|
|
|
|||
|
|
@ -12,6 +12,10 @@ import pip_install
|
|||
# We include the hashes of the packages here for extra verification of
|
||||
# the packages downloaded from PyPI. This is especially valuable in our
|
||||
# builds of Certbot that we ship to our users such as our Docker images.
|
||||
#
|
||||
# An older version of setuptools is currently used here in order to keep
|
||||
# compatibility with Python 2 since newer versions of setuptools have dropped
|
||||
# support for it.
|
||||
REQUIREMENTS = r"""
|
||||
pip==20.2.4 \
|
||||
--hash=sha256:51f1c7514530bd5c145d8f13ed936ad6b8bfcb8cf74e10403d0890bc986f0033 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue