forked from contiv/install
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes the following issues: contiv#162 contiv#161 contiv#154 contiv#149 Also add the full installer back (hit another lab setup where curl to get the netplugin binaries is timing out). Updated the corresponding release script and the "," fix for env.json issue.
- Loading branch information
1 parent
d05f237
commit 9fbb1be
Showing
5 changed files
with
47 additions
and
11 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,5 +1,7 @@ | ||
FROM alpine | ||
|
||
RUN apk add --no-cache python openssl libffi \ | ||
py-pip ansible nmap-ncat | ||
FROM alpine:3.6 | ||
|
||
RUN DEV_PACKAGES="python-dev gcc musl-dev openssl-dev libffi-dev" \ | ||
&& apk add --no-cache python openssl libffi py-pip nmap-cat $DEV_PACKAGES \ | ||
&& pip install --upgrade pip \ | ||
&& pip install ansible==2.3.1.0 \ | ||
&& apk del $DEV_PACKAGES |
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
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