From 62e3570a151e926558f66e39f23949a077b1cbb7 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Mon, 13 Apr 2026 13:41:21 -0500 Subject: [PATCH] fix: remove AppImage bundling to fix linux-amd64 build - Remove appimage from bundle targets in tauri.conf.json - Remove linuxdeploy from Dockerfile - Update Dockerfile to remove fuse dependency (not needed) --- .docker/Dockerfile.linux-amd64 | 1 - src-tauri/tauri.conf.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.docker/Dockerfile.linux-amd64 b/.docker/Dockerfile.linux-amd64 index f8320003..1dbb3cc5 100644 --- a/.docker/Dockerfile.linux-amd64 +++ b/.docker/Dockerfile.linux-amd64 @@ -20,7 +20,6 @@ RUN apt-get update -qq \ perl \ jq \ git \ - fuse \ && curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \ && apt-get install -y --no-install-recommends nodejs \ && rm -rf /var/lib/apt/lists/* diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0141b39b..5ed455b5 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -26,7 +26,7 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": ["deb", "rpm"], "icon": [ "icons/32x32.png", "icons/128x128.png",