-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor the messages to its own file (#24)
- Loading branch information
Showing
14 changed files
with
228 additions
and
349 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM registry.access.redhat.com/ubi9/ubi-minimal | ||
|
||
RUN microdnf install python3-requests -y && \ | ||
microdnf clean all && \ | ||
rm -rf /var/cache/yum | ||
|
||
ADD ./prow/prow.py /prow.py | ||
|
||
ENTRYPOINT ["python3", "/prow.py"] | ||
RUN mkdir /src | ||
USER 1001 | ||
COPY --chown=1001:1001 pipelines-as-code-prow /src | ||
COPY --chown=1001:1001 pipelines_as_code_prow /src/pipelines_as_code_prow | ||
ENTRYPOINT ["python3", "/src/pipelines-as-code-prow"] |
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 was deleted.
Oops, something went wrong.
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,7 @@ | ||
#!/usr/bin/env python | ||
# Author: Chmouel Boudjnah <[email protected]> | ||
|
||
from pipelines_as_code_prow import prow | ||
|
||
if __name__ == "__main__": | ||
prow.main() |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.