From f7fcfd5d88e3a98b4cdd4cfb583d7a15eaca8d1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Aim=C3=A9e=20Smiseth?= <51710585+SaraSmiseth@users.noreply.github.com> Date: Thu, 23 Feb 2023 16:22:36 +0100 Subject: [PATCH] Update prosody and luarocks (#48) * Update prosody to version 0.12.3. * Update luarocks to version 3.9.2 --- Dockerfile | 8 ++++---- tests/test.bash | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5219e99..6f24959 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,11 @@ ARG BUILD_DATE ARG VCS_REF ARG VERSION -ARG LUAROCKS_VERSION=3.9.0 -ARG PROSODY_VERSION=0.12.1 +ARG LUAROCKS_VERSION=3.9.2 +ARG PROSODY_VERSION=0.12.3 -ARG LUAROCKS_SHA256=5e840f0224891de96be4139e9475d3b1de7af3a32b95c1bdf05394563c60175f -ARG PROSODY_DOWNLOAD_SHA256=a7ecbbe41f01a4251805593ac6d15dbc6cb75d9c7a876c76b456cf74ff4b90e5 +ARG LUAROCKS_SHA256=bca6e4ecc02c203e070acdb5f586045d45c078896f6236eb46aa33ccd9b94edb +ARG PROSODY_DOWNLOAD_SHA256=35da0d031ff46040a2d638e004d4255e249b6323fe6212db9ddd76b401db2101 LABEL luarocks.version="${LUAROCKS_VERSION}" LABEL org.opencontainers.image.authors="Sara Smiseth" diff --git a/tests/test.bash b/tests/test.bash index 9646ab5..401189b 100755 --- a/tests/test.bash +++ b/tests/test.bash @@ -18,6 +18,7 @@ generateCert() { registerTestUser() { local userName="$1" local containerName="$2" + echo "Registering TestUser '$userName' in container '$containerName'" sudo docker compose exec "$containerName" /bin/bash -c "/entrypoint.bash register $userName localhost 12345678" }