Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ GIT_REPO_URL=https://github.com/bcgov/openshift-aries-mediator-service.git
GIT_REF=main
SOURCE_CONTEXT_DIR=./openshift/templates/aries-mediator-agent/container
DOCKER_FILE_PATH=Dockerfile
SOURCE_IMAGE=artifacts.developer.gov.bc.ca/github-docker-remote/hyperledger/aries-cloudagent-python:py3.9-0.10.4
SOURCE_IMAGE=artifacts.developer.gov.bc.ca/github-docker-remote/openwallet-foundation/acapy-agent:py3.12-1.1.0
OUTPUT_IMAGE_TAG=latest
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ parameters:
displayName: Source Image
description: The fully-qualified name of the source image for this component.
required: true
value: artifacts.developer.gov.bc.ca/github-docker-remote/hyperledger/aries-cloudagent-python:py3.9-0.10.4
value: artifacts.developer.gov.bc.ca/github-docker-remote/openwallet-foundation/acapy-agent:py3.12-1.1.0
- name: OUTPUT_IMAGE_TAG
displayName: Output Image Tag
description: The tag given to the built image.
Expand Down
8 changes: 4 additions & 4 deletions openshift/templates/aries-mediator-agent/container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.4
FROM ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.1.0

# ========================================================================================================================================
# Install Plugins
# ----------------------------------------------------------------------------------------------------------------------------------------
# Redis PQ
RUN pip install --no-cache-dir git+https://github.com/hyperledger/aries-acapy-plugins.git@main#subdirectory=redis_events
RUN pip install --no-cache-dir git+https://github.com/openwallet-foundation/acapy-plugins.git@main#subdirectory=redis_events
# Firebase Push Notifications
RUN pip install --no-cache-dir -e "git+https://github.com/hyperledger/aries-mediator-service.git@main#egg=firebase_push_notifications&subdirectory=acapy/plugins/firebase_push_notifications"
# ========================================================================================================================================
RUN pip install --no-cache-dir git+https://github.com/openwallet-foundation/acapy-plugins.git@main#subdirectory=firebase_push_notifications
# ========================================================================================================================================