From 25a6afe2f5d9d2d033ad53ae304b249a60203137 Mon Sep 17 00:00:00 2001 From: jy-wirepas <59594181+jy-wirepas@users.noreply.github.com> Date: Thu, 12 Jan 2023 11:49:22 -0500 Subject: [PATCH] Update pycryptodome version to latest PyCryptodome v3.9.7 doesn't have the required elliptic curve algorithms to be able to support the new signed scratchpad format. This commit updates the pycryptodome Python package version to the latest available (v3.16.0). --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 77d4e4e..b9381d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update \ && rm -fr /var/libapt/lists/* # Install pycryptodome package needed for scratchpad image generation -RUN pip3 install pycryptodome==3.9.7 +RUN pip3 install pycryptodome==3.16.0 WORKDIR /home/${user}