Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docker/aca-py/Dockerfile → docker/agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USER root
# Install webvh plugin directly from GitHub
# Using commit before Python 3.13 upgrade (Dec 15, 2025)
# This is the last version compatible with Python 3.12 and ACA-Py 1.3.2
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@7a1a7c644ed4525d8eaf182a88c179ca5453a6f6#subdirectory=webvh
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.4.0#subdirectory=webvh

# Switch back to default aries user
USER aries
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ services:

aca-py:
build:
context: ./aca-py
context: ./agent
dockerfile: Dockerfile
image: vc-authn-oidc-acapy:webvh
environment:
Expand Down
6 changes: 3 additions & 3 deletions docker/manage
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ build-aca-py() {
echo -e "\nBuilding aca-py image with webvh plugin..."
docker build \
-t 'vc-authn-oidc-acapy:webvh' \
-f './aca-py/Dockerfile' './aca-py'
-f './agent/Dockerfile' './agent'
}

buildImages() {
Expand All @@ -160,8 +160,8 @@ configureEnvironment() {
# Strip whitespace from variable name
var_name="${var_name//[[:space:]]/}"
# Only export if not already set (respects command-line precedence)
# Using -v to distinguish between unset and empty variables
if [ ! -v "${var_name}" ]; then
# Using -z with indirect expansion to check if variable is unset or empty
if [[ -z "${!var_name+x}" ]]; then
if ! export "${line//[$'\r\n']}" 2>/dev/null; then
echoError "ERROR: Invalid .env line: ${line}"
exit 1
Expand Down
Loading