From 82985064358582909819ae667fbaa0f152d4bf03 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Mon, 13 Apr 2026 12:39:37 -0500 Subject: [PATCH] refactor: remove custom linuxdeploy install per CI CI uses tauri-downloaded version --- .docker/Dockerfile.linux-amd64 | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.docker/Dockerfile.linux-amd64 b/.docker/Dockerfile.linux-amd64 index 5c5892ef..1f44ff84 100644 --- a/.docker/Dockerfile.linux-amd64 +++ b/.docker/Dockerfile.linux-amd64 @@ -2,7 +2,7 @@ # All system dependencies are installed once here; CI jobs skip apt-get entirely. # Rebuild when: Rust toolchain version changes, webkit2gtk/gtk major version changes, # Node.js major version changes, OpenSSL major version changes (used via OPENSSL_STATIC=1), -# Tauri CLI version changes that affect bundler system deps, or linuxdeploy is needed. +# Tauri CLI version changes that affect bundler system deps. # Tag format: rust-node FROM rust:1.88-slim @@ -25,13 +25,5 @@ RUN apt-get update -qq \ && apt-get install -y --no-install-recommends nodejs \ && rm -rf /var/lib/apt/lists/* -# Install linuxdeploy for AppImage bundling (required for Tauri 2.x) -# Download linuxdeploy AppImage and extract to get the binary -RUN curl -Ls https://github.com/tauri-apps/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage -o /tmp/linuxdeploy.AppImage \ - && chmod +x /tmp/linuxdeploy.AppImage \ - && /tmp/linuxdeploy.AppImage --appimage-extract \ - && mv squashfs-root/usr/bin/linuxdeploy /usr/local/bin/ \ - && rm -rf /tmp/linuxdeploy.AppImage squashfs-root - RUN rustup target add x86_64-unknown-linux-gnu \ && rustup component add rustfmt clippy