All checks were successful
Test / rust-fmt-check (pull_request) Successful in 15s
Test / frontend-typecheck (pull_request) Successful in 1m21s
Test / frontend-tests (pull_request) Successful in 1m25s
PR Review Automation / review (pull_request) Successful in 3m32s
Test / rust-clippy (pull_request) Successful in 4m1s
Test / rust-tests (pull_request) Successful in 5m18s
- Add -L flag to curl for linuxdeploy redirects - Split migration 015 into 015_add_use_datastore_upload and 016_add_created_at - Use separate execute calls for ALTER TABLE statements - Add idempotency test for migration 015 - Use bool type for use_datastore_upload instead of i64
35 lines
1.4 KiB
Docker
35 lines
1.4 KiB
Docker
# Pre-baked builder for Linux amd64 Tauri releases.
|
|
# 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.
|
|
# Tag format: rust<VER>-node<VER>
|
|
FROM rust:1.88-slim
|
|
|
|
RUN apt-get update -qq \
|
|
&& apt-get install -y -qq --no-install-recommends \
|
|
ca-certificates \
|
|
libwebkit2gtk-4.1-dev \
|
|
libssl-dev \
|
|
libgtk-3-dev \
|
|
libayatana-appindicator3-dev \
|
|
librsvg2-dev \
|
|
patchelf \
|
|
pkg-config \
|
|
curl \
|
|
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/*
|
|
|
|
# Install linuxdeploy for AppImage bundling (required for Tauri 2.x)
|
|
# Download linuxdeploy from the official repository and extract AppImage
|
|
RUN curl -fsSL -L https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage -o /usr/local/bin/linuxdeploy \
|
|
&& chmod +x /usr/local/bin/linuxdeploy
|
|
|
|
RUN rustup target add x86_64-unknown-linux-gnu \
|
|
&& rustup component add rustfmt clippy
|