Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions deploy/docker/Dockerfile.cli-macos
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ RUN --mount=type=cache,id=cargo-registry-cli-macos,sharing=locked,target=/root/.
# Stage 2: real build
# ---------------------------------------------------------------------------
COPY crates/ crates/
COPY providers/ providers/

# Touch source files to ensure they're rebuilt (not the cached dummy).
RUN touch crates/openshell-cli/src/main.rs \
Expand Down
1 change: 1 addition & 0 deletions deploy/docker/Dockerfile.gateway-macos
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ RUN --mount=type=cache,id=cargo-registry-gateway-macos,sharing=locked,target=/ro
cargo build --release --target aarch64-apple-darwin -p openshell-server 2>/dev/null || true

COPY crates/ crates/
COPY providers/ providers/

RUN touch crates/openshell-core/src/lib.rs \
crates/openshell-driver-kubernetes/src/lib.rs \
Expand Down
1 change: 1 addition & 0 deletions deploy/docker/Dockerfile.python-wheels-macos
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ RUN --mount=type=cache,id=cargo-registry-python-wheels-macos-${TARGETARCH},shari

# Copy actual source code and Python packaging files.
COPY crates/ crates/
COPY providers/ providers/
COPY pyproject.toml README.md ./
COPY python/ python/

Expand Down
Loading