Skip to content

Commit

Permalink
ACA-Py update
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas ONeil <[email protected]>
  • Loading branch information
loneil committed Oct 15, 2024
1 parent b2831c0 commit efa8bf6
Show file tree
Hide file tree
Showing 5 changed files with 710 additions and 582 deletions.
12 changes: 6 additions & 6 deletions plugins/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0 AS base
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1 AS base

# Install and Configure Poetry
USER root
Expand All @@ -24,16 +24,16 @@ RUN poetry install --only main
RUN ln -s $(poetry env info -p)/lib/python3.6/site-packages site-packages


FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1
COPY --from=base --chown=aries:aries /home/aries/.venv /home/aries/.venv
ENV PATH="/home/aries/.venv/bin:$PATH"

COPY --chown=aries:aries docker/default.yml ./
COPY --chown=aries:aries traction_innkeeper/traction_innkeeper traction_plugins/traction_innkeeper
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=basicmessage_storage
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=connection_update
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=multitenant_provider
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=rpc
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=basicmessage_storage
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=connection_update
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=multitenant_provider
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=rpc


ENTRYPOINT ["/bin/bash", "-c", "aca-py \"$@\"", "--"]
Expand Down
4 changes: 2 additions & 2 deletions plugins/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.12"
aries-cloudagent = { version = "1.0.0" }
aries-cloudagent = { version = "1.0.1" }
python-dateutil = "^2.8.2"
typing-extensions = "4.8.0"
traction-innkeeper = {path = "./traction_innkeeper", develop = true}
Expand All @@ -22,7 +22,7 @@ ursa-bbs-signatures = { version = "~1.0.1" }
python3-indy = { version = "^1.11.1" }

[tool.poetry.dev-dependencies]
ruff = "^0.5.7"
ruff = "^0.6.9"

[build-system]
requires = ["setuptools", "poetry-core>=1.2"]
Expand Down
Loading

0 comments on commit efa8bf6

Please sign in to comment.