Skip to content

Commit 89b81fb

Browse files
committed
fix: add libssl-dev to Docker build stage
1 parent 994751c commit 89b81fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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 && rm -rf /var/lib/apt/lists/*
12+
RUN apt-get update && apt-get install -y pkg-config libssl-dev && 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)