Skip to content

Commit 956110c

Browse files
committed
fix: add libsodium build deps and update macos runner
1 parent 89b81fb commit 956110c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- runner: ubuntu-latest
4444
target: aarch64-unknown-linux-gnu
4545
use_cross: true
46-
- runner: macos-13
46+
- runner: macos-latest
4747
target: x86_64-apple-darwin
4848
use_cross: false
4949
- runner: macos-14

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN npm run build
99
# ── Stage 2: Build Rust backend (with embedded frontend) ────────────
1010
FROM rust:1.85-slim AS backend-build
1111
WORKDIR /app
12-
RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/*
12+
RUN apt-get update && apt-get install -y pkg-config libssl-dev build-essential autoconf automake libtool && rm -rf /var/lib/apt/lists/*
1313
COPY Cargo.toml Cargo.lock ./
1414
COPY crates/ crates/
1515
COPY --from=frontend-build /app/dashboard/dist dashboard/dist

0 commit comments

Comments
 (0)