From 1fc229f582e9dcf3d7ccdd19460525a2ecc5ee57 Mon Sep 17 00:00:00 2001 From: Till Wegmueller Date: Tue, 6 Jan 2026 18:44:46 +0100 Subject: [PATCH] fix(docker): Add missing client-wasm directory and update Rust version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add COPY client-wasm to Dockerfile to include workspace member - Update Rust base image from 1.91 to 1.92 - Fixes CI build failure: "failed to load manifest for workspace member client-wasm" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a94a0b..8cea51e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Multi-stage build for Barycenter OpenID Connect IdP # Build stage -FROM rust:1.91-bookworm AS builder +FROM rust:1.92-bookworm AS builder WORKDIR /build @@ -10,6 +10,7 @@ COPY Cargo.toml Cargo.lock ./ # Copy source code COPY src ./src COPY migration ./migration +COPY client-wasm ./client-wasm # Build release binary with platform-specific caches to avoid race conditions ARG TARGETPLATFORM