From a6e2c61673969b1dfb4872d17c12f1439f52c719 Mon Sep 17 00:00:00 2001 From: ubergeek77 Date: Sun, 17 Nov 2024 01:23:12 -0600 Subject: [PATCH] Fix --- Dockerfile-backend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-backend b/Dockerfile-backend index 4ef37f3..18c1705 100644 --- a/Dockerfile-backend +++ b/Dockerfile-backend @@ -44,7 +44,7 @@ RUN --mount=type=cache,target=/lemmy/target set -ex; \ # Compress the binary with upx # Skip this step on 32-but architectures - if [[ "$(getconf LONG_BIT)" == "64" ]]; then; \ + if [[ "$(getconf LONG_BIT)" == "64" ]]; then \ wget https://github.com/upx/upx/releases/download/v4.2.4/upx-4.2.4-${TARGETARCH}_linux.tar.xz; \ tar -xvf upx-4.2.4-${TARGETARCH}_linux.tar.xz; \ cp upx-4.2.4-${TARGETARCH}_linux/upx /usr/bin; \