-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from cisagov/improvement/pin_dependencies
Pin the Dependencies Used
- Loading branch information
Showing
3 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
ARG VERSION=unspecified | ||
|
||
FROM certbot/dns-route53 | ||
FROM certbot/dns-route53:v1.19.0 | ||
|
||
ARG VERSION | ||
|
||
|
@@ -10,8 +10,15 @@ ARG VERSION | |
LABEL org.opencontainers.image.authors="[email protected]" | ||
LABEL org.opencontainers.image.vendor="Cybersecurity and Infrastructure Security Agency" | ||
|
||
RUN apk add python3 | ||
RUN pip3 install --upgrade pip && pip3 install --upgrade awscli boto3 docopt | ||
RUN apk add --no-cache python3=3.8.10-r0 | ||
RUN pip3 install --no-cache-dir \ | ||
pip==21.2.4 \ | ||
setuptools==58.1.0 \ | ||
wheel==0.37.0 | ||
RUN pip3 install --no-cache-dir \ | ||
awscli==1.20.52 \ | ||
boto3==1.18.52 \ | ||
docopt==0.6.2 | ||
COPY src/rebuild-symlinks.py src/entrypoint.sh src/version.txt /opt/certbot/ | ||
COPY src/config /root/.aws/config | ||
RUN ln -snf /run/secrets/credentials /root/.aws/credentials | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.3" | ||
__version__ = "0.0.4" |