mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
Add static dependencies for each plugin.
Created by `pip freeze`ing each plugin and removing the requirements that were already in letsencrypt-auto-source/pieces/dependency-requirements.txt
This commit is contained in:
parent
693bac4b49
commit
eca5268a8a
28 changed files with 85 additions and 14 deletions
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-cloudflare
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-cloudflare
|
||||
RUN pip install -r src/certbot-dns-cloudflare/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-cloudflare
|
||||
|
|
|
|||
4
certbot-dns-cloudflare/plugin_dependencies.txt
Normal file
4
certbot-dns-cloudflare/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
cloudflare==1.5.1
|
||||
future==0.16.0
|
||||
logger==1.4
|
||||
PyYAML==3.13
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-cloudxns
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-cloudxns
|
||||
RUN pip install -r src/certbot-dns-cloudxns/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-cloudxns
|
||||
|
|
|
|||
4
certbot-dns-cloudxns/plugin_dependencies.txt
Normal file
4
certbot-dns-cloudxns/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-digitalocean
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-digitalocean
|
||||
RUN pip install -r src/certbot-dns-digitalocean/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-digitalocean
|
||||
|
|
|
|||
1
certbot-dns-digitalocean/plugin_dependencies.txt
Normal file
1
certbot-dns-digitalocean/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
python-digitalocean==1.11
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-dnsimple
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-dnsimple
|
||||
RUN pip install -r src/certbot-dns-dnsimple/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-dnsimple
|
||||
|
|
|
|||
4
certbot-dns-dnsimple/plugin_dependencies.txt
Normal file
4
certbot-dns-dnsimple/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-dnsmadeeasy
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-dnsmadeeasy
|
||||
RUN pip install -r src/certbot-dns-dnsmadeeasy/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-dnsmadeeasy
|
||||
|
|
|
|||
4
certbot-dns-dnsmadeeasy/plugin_dependencies.txt
Normal file
4
certbot-dns-dnsmadeeasy/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-gehirn
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-gehirn
|
||||
RUN pip install -r src/certbot-dns-gehirn/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-gehirn
|
||||
|
|
|
|||
4
certbot-dns-gehirn/plugin_dependencies.txt
Normal file
4
certbot-dns-gehirn/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-google
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-google
|
||||
RUN pip install -r src/certbot-dns-google/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-google
|
||||
|
|
|
|||
8
certbot-dns-google/plugin_dependencies.txt
Normal file
8
certbot-dns-google/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
google-api-python-client==1.5.0
|
||||
httplib2==0.10.3
|
||||
oauth2client==2.0.0
|
||||
pyasn1==0.1.9
|
||||
pyasn1-modules==0.0.10
|
||||
rsa==3.4.2
|
||||
simplejson==3.16.0
|
||||
uritemplate==0.6
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-linode
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-linode
|
||||
RUN pip install -r src/certbot-dns-linode/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-linode
|
||||
|
|
|
|||
4
certbot-dns-linode/plugin_dependencies.txt
Normal file
4
certbot-dns-linode/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-luadns
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-luadns
|
||||
RUN pip install -r src/certbot-dns-luadns/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-luadns
|
||||
|
|
|
|||
4
certbot-dns-luadns/plugin_dependencies.txt
Normal file
4
certbot-dns-luadns/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-nsone
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-nsone
|
||||
RUN pip install -r src/certbot-dns-nsone/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-nsone
|
||||
|
|
|
|||
4
certbot-dns-nsone/plugin_dependencies.txt
Normal file
4
certbot-dns-nsone/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-ovh
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-ovh
|
||||
RUN pip install -r src/certbot-dns-ovh/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-ovh
|
||||
|
|
|
|||
4
certbot-dns-ovh/plugin_dependencies.txt
Normal file
4
certbot-dns-ovh/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-rfc2136
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-rfc2136
|
||||
RUN pip install -r src/certbot-dns-rfc2136/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-rfc2136
|
||||
|
|
|
|||
1
certbot-dns-rfc2136/plugin_dependencies.txt
Normal file
1
certbot-dns-rfc2136/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
dnspython==1.15.0
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-route53
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-route53
|
||||
RUN pip install -r src/certbot-dns-route53/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-route53
|
||||
|
|
|
|||
7
certbot-dns-route53/plugin_dependencies.txt
Normal file
7
certbot-dns-route53/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
boto3==1.9.36
|
||||
botocore==1.12.36
|
||||
docutils==0.12
|
||||
futures==3.1.1
|
||||
jmespath==0.9.3
|
||||
python-dateutil==2.6.1
|
||||
s3transfer==0.1.11
|
||||
|
|
@ -2,4 +2,5 @@ FROM certbot/certbot
|
|||
|
||||
COPY . src/certbot-dns-sakuracloud
|
||||
|
||||
RUN pip install --no-cache-dir --editable src/certbot-dns-sakuracloud
|
||||
RUN pip install -r src/certbot-dns-sakuracloud/plugin_dependencies.txt \
|
||||
&& pip install --no-cache-dir --editable src/certbot-dns-sakuracloud
|
||||
|
|
|
|||
4
certbot-dns-sakuracloud/plugin_dependencies.txt
Normal file
4
certbot-dns-sakuracloud/plugin_dependencies.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dns-lexicon==3.0.8
|
||||
future==0.16.0
|
||||
PyYAML==3.13
|
||||
tldextract==2.2.0
|
||||
Loading…
Reference in a new issue