Skip to content

Commit a79cca4

Browse files
authored
Dependency updates (#954)
* Dependency updates Signed-off-by: Emiliano Suñé <emiliano.sune@gmail.com> * Consolidate agent/aca-py folders, small manage script tweak Signed-off-by: Emiliano Suñé <emiliano.sune@gmail.com> * Sync webvh plugin version Signed-off-by: Emiliano Suñé <emiliano.sune@gmail.com> --------- Signed-off-by: Emiliano Suñé <emiliano.sune@gmail.com>
1 parent 76a17fb commit a79cca4

File tree

4 files changed

+463
-429
lines changed

4 files changed

+463
-429
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USER root
77
# Install webvh plugin directly from GitHub
88
# Using commit before Python 3.13 upgrade (Dec 15, 2025)
99
# This is the last version compatible with Python 3.12 and ACA-Py 1.3.2
10-
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@7a1a7c644ed4525d8eaf182a88c179ca5453a6f6#subdirectory=webvh
10+
RUN pip install git+https://github.com/openwallet-foundation/acapy-plugins@1.4.0#subdirectory=webvh
1111

1212
# Switch back to default aries user
1313
USER aries

docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ services:
161161

162162
aca-py:
163163
build:
164-
context: ./aca-py
164+
context: ./agent
165165
dockerfile: Dockerfile
166166
image: vc-authn-oidc-acapy:webvh
167167
environment:

docker/manage

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ build-aca-py() {
142142
echo -e "\nBuilding aca-py image with webvh plugin..."
143143
docker build \
144144
-t 'vc-authn-oidc-acapy:webvh' \
145-
-f './aca-py/Dockerfile' './aca-py'
145+
-f './agent/Dockerfile' './agent'
146146
}
147147

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

0 commit comments

Comments
 (0)