From 84b05bc2ff9b9f88476efc4906c9c74836f4f21e Mon Sep 17 00:00:00 2001 From: Bernhard B Date: Sat, 20 Feb 2021 14:17:19 +0100 Subject: [PATCH] fixed small bug in arvm7 build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5045156..e805f74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -111,6 +111,7 @@ RUN if [ "$(uname -m)" = "aarch64" ] || [ "$(uname -m)" = "x86_64" ]; then \ elif [ "$(uname -m)" = "armv7l" ]; then \ echo "GRAALVM doesn't support 32bit" \ && echo "Creating temporary file, otherwise the below copy doesn't work for armv7" \ + && mkdir -p /tmp/signal-cli-${SIGNAL_CLI_VERSION}/build/native-image \ && touch /tmp/signal-cli-${SIGNAL_CLI_VERSION}/build/native-image/signal-cli; \ else \ echo "Unknown architecture"; \