From 6ec6309207334d459b9ce09810083efe41f8b1e6 Mon Sep 17 00:00:00 2001 From: ff137 Date: Tue, 9 Jul 2024 14:29:45 +0300 Subject: [PATCH] :arrow_up: Upgrade aca-py to recent nightly build with python3.12 --- docker-compose.yaml | 6 +++--- dockerfiles/agents/Dockerfile | 2 +- dockerfiles/agents/Dockerfile.agent | 4 ++-- dockerfiles/agents/Dockerfile.author.agent | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index c1a8c69cc..82c585f30 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -374,15 +374,15 @@ services: # context: . # dockerfile: dockerfiles/agents/Dockerfile.author.agent # # To run a forked version of the agent use commented out code below - context: https://github.com/ff137/aries-cloudagent-python.git#fix/paginated-queries-with-post-filter + context: https://github.com/didx-xyz/aries-cloudagent-python.git#0.12.2b2 dockerfile: docker/Dockerfile user: root entrypoint: - sh - -c - | - pip3 install --no-cache-dir git+https://github.com/didx-xyz/acapy-wallet-groups-plugin@test/fix-pagination - pip3 install --no-cache-dir git+https://github.com/didx-xyz/aries-acapy-plugins@test/fix-pagination#subdirectory=redis_events + pip3 install --no-cache-dir git+https://github.com/didx-xyz/acapy-wallet-groups-plugin@0.12.2b2 + pip3 install --no-cache-dir git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-07-09#subdirectory=redis_events aca-py start \ -it http "0.0.0.0" "3020" \ -e http://governance-multitenant-agent:3020 \ diff --git a/dockerfiles/agents/Dockerfile b/dockerfiles/agents/Dockerfile index be525aa3c..801d9eb09 100644 --- a/dockerfiles/agents/Dockerfile +++ b/dockerfiles/agents/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.12.1 +FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-nightly-2024-07-08 ADD configuration ./configuration ADD scripts ./scripts diff --git a/dockerfiles/agents/Dockerfile.agent b/dockerfiles/agents/Dockerfile.agent index 76b2a34b7..c6f9883d0 100644 --- a/dockerfiles/agents/Dockerfile.agent +++ b/dockerfiles/agents/Dockerfile.agent @@ -1,8 +1,8 @@ -FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-nightly-2024-06-26 +FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-nightly-2024-07-08 USER root # install redis-events plugin -RUN pip3 install git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-06-26#subdirectory=redis_events +RUN pip3 install git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-07-09#subdirectory=redis_events COPY scripts/startup.sh startup.sh RUN chmod +x ./startup.sh diff --git a/dockerfiles/agents/Dockerfile.author.agent b/dockerfiles/agents/Dockerfile.author.agent index 562ad9db9..4c4c0b1e0 100644 --- a/dockerfiles/agents/Dockerfile.author.agent +++ b/dockerfiles/agents/Dockerfile.author.agent @@ -1,12 +1,12 @@ -FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-nightly-2024-06-26 +FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-nightly-2024-07-08 USER root # Install wallet group id plugin -RUN pip3 install git+https://github.com/didx-xyz/acapy-wallet-groups-plugin@0.12.2b1 +RUN pip3 install git+https://github.com/didx-xyz/acapy-wallet-groups-plugin@0.12.2b2 # install redis-events plugin -RUN pip3 install git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-06-26#subdirectory=redis_events +RUN pip3 install git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-07-09#subdirectory=redis_events COPY scripts/startup.sh startup.sh RUN chmod +x ./startup.sh