Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Sefl contained dockerfile for the verifier #3

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ARG BASE_IMAGE=keripy
FROM ${BASE_IMAGE}


WORKDIR /verifier
COPY ./ ./

RUN pip install -r requirements.txt \
&& mkdir -p /verifier/scripts/keri/cf/

ENTRYPOINT ["verifier", "server", "start", "--config-dir", "scripts", "--config-file", "verifier-config.json"]
2 changes: 1 addition & 1 deletion tests/core/test_basing.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_vdb():
assert baser.name == "vdb"
assert baser.temp is False
assert isinstance(baser.env, lmdb.Environment)
assert baser.path.endswith("keri/vdb/vdb")
assert baser.path.endswith(".verifier/vdb/vdb")
assert baser.env.path() == baser.path
assert os.path.exists(baser.path)

Expand Down