-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create additional nsgroup objects (#8)
Container updates: - update image to alpine 3.15 - install cryptography using apk Updates to support infobloxopen/infoblox-ansible#56: - update flaskapp.py to add support for additional nsgroup:delegation - add more nsgroup objects
- Loading branch information
1 parent
7f94a62
commit 4aef206
Showing
2 changed files
with
16 additions
and
4 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,8 +1,8 @@ | ||
FROM alpine:3.6 | ||
FROM alpine:3.15 | ||
|
||
ADD flaskapp.py /root/flaskapp.py | ||
ADD requirements.txt /root/requirements.txt | ||
RUN apk add --no-cache build-base openssl-dev libffi-dev python3 python3-dev py3-pip | ||
RUN apk add --no-cache build-base python3 py3-wheel py3-pip py3-cryptography | ||
RUN pip3 install -r /root/requirements.txt | ||
EXPOSE 443 | ||
CMD /usr/bin/python3 /root/flaskapp.py |
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