forked from F5Networks/f5-openstack-agent
-
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.
setup.py missing universal truth in setup_req*.txt
Issues: Fixes F5Networks#958 Problem: * `setup_requirements.txt` missing from `setup.py` Analysis: * This adds it and allows for pip library to exist for redhat and ubuntu * Both required for build Dockerfile's Tests: This is driven by the: `./f5-openstack-agent-dist/scripts/test_install.sh` Test script for building packages and validating them.
- Loading branch information
Showing
3 changed files
with
38 additions
and
21 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 centos:7 | ||
|
||
RUN yum update -y && yum install rpm-build make python-setuptools git -y | ||
RUN curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" | ||
RUN python get-pip.py | ||
|
||
COPY ./build-rpms.sh / |
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