forked from WebOfTrust/keripy
-
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.
Small docker and OOBI fixes (WebOfTrust#619)
* Fix a few old creder field references not caught in tests. Signed-off-by: pfeairheller <[email protected]> * Update OOBI processing to fail gracefully with a broken URL Signed-off-by: pfeairheller <[email protected]> --------- Signed-off-by: pfeairheller <[email protected]>
- Loading branch information
1 parent
5fd24cb
commit 4e7dd7b
Showing
4 changed files
with
31 additions
and
8 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,8 +1,16 @@ | ||
|
||
.PHONY: build-keri | ||
build-keri: | ||
@docker build --no-cache -f images/keripy.dockerfile --tag gleif/keri:1.0.0 . | ||
@docker buildx build --platform=linux/amd64 --no-cache -f images/keripy.dockerfile --tag weboftrust/keri:1.1.0 . | ||
|
||
.PHONY: build-witness-demo | ||
build-witness-demo: | ||
@docker build --no-cache -f images/witness.demo.dockerfile --tag gleif/keri-witness-demo:1.0.0 . | ||
@@docker buildx build --platform=linux/amd64 --no-cache -f images/witness.demo.dockerfile --tag weboftrust/keri-witness-demo:1.1.0 . | ||
|
||
.PHONY: publish-keri | ||
publish-keri: | ||
@docker push weboftrust/keri --all-tags | ||
|
||
.PHONY: publish-keri-witness-demo | ||
publish-keri-witness-demo: | ||
@docker push weboftrust/keri-witness-demo --all-tags |
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,4 +1,4 @@ | ||
FROM gleif/keri:1.0.0 | ||
FROM gleif/keri:1.1.0 | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
EXPOSE 5632 | ||
|
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