-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CE-361] Update make targets for ppc64le/s390x
This PR Addresses 2 points :- 1) make target "watchdog" for ppc64le/s390x is not present. 2) make target "engine" was moved to dockerhub location as part of commit 2891c4f and hence make start would fail. Change-Id: I6fbf365feffa53a0f92e7e481606b40f1ac6225b Signed-off-by: Krishna Harsha Voora <krishvoor@in.ibm.com>
- Loading branch information
Showing
3 changed files
with
24 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Copyright IBM Corp, All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
FROM _NS_/cello-baseimage:_TAG_ | ||
|
||
# use this in development | ||
CMD ["python", "restserver.py"] | ||
|
||
# use this in product | ||
#CMD ["gunicorn", "-w", "128", "-b", "0.0.0.0:80", "restserver:app"] | ||
|
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,8 @@ | ||
# Copyright IBM Corp, All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
FROM _NS_/cello-baseimage:_TAG_ | ||
|
||
# use this in development | ||
CMD ["python", "watchdog.py"] |