-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In another attempt to circumvent the restrictions from PyPI, I am adding a submodule for my fork of ssh2-python and adding that as a local build requirement.
- Loading branch information
1 parent
0767e25
commit de4ca0f
Showing
6 changed files
with
21 additions
and
9 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "broker/vendored/ssh2-python"] | ||
path = broker/vendored/ssh2-python | ||
url = https://github.com/jacobcallahan/ssh2-python.git |
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,13 +1,18 @@ | ||
FROM fedora | ||
MAINTAINER https://github.com/SatelliteQE | ||
|
||
ENV PWD /root/broker | ||
|
||
RUN dnf -y install make cmake gcc-c++ zlib-devel \ | ||
openssl-devel git python3-pip python3-devel \ | ||
openssl-devel git python3-pip python3-devel which\ | ||
&& dnf clean all | ||
WORKDIR /root/broker | ||
COPY . /root/broker/ | ||
|
||
RUN pip install . | ||
|
||
WORKDIR $PWD | ||
COPY . $PWD | ||
|
||
RUN pip install uv | ||
RUN uv pip install -e . | ||
|
||
ENTRYPOINT ["broker"] | ||
CMD ["--help"] |
Submodule ssh2-python
added at
abbbf8
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