mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-10 13:10:42 +00:00
fix(docker): Add missing client-wasm directory and update Rust version
- 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 <noreply@anthropic.com>
This commit is contained in:
parent
2d14ef000c
commit
1fc229f582
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue