- All gsdDir/gsdRoot/gsdHome → sfDir/sfRootDir/sfHome - GSDWorkspace* → SFWorkspace* interfaces - bootstrapGsdProject → bootstrapProject - runGSDDoctor → runSFDoctor - GsdClient → SfClient, gsd-client.ts → sf-client.ts - .gsd/ → .sf/ in all tests, docs, docker, native, vscode - Auto-migration: headless detects .gsd/ → renames to .sf/ - Deleted gsd-phase-state.ts backward-compat re-export - Renamed bin/gsd-from-source → bin/sf-from-source - Updated mintlify docs, github workflows, docker configs
20 lines
917 B
Text
20 lines
917 B
Text
# ──────────────────────────────────────────────
|
|
# CI Builder
|
|
# Image: ghcr.io/sf-build/sf-ci-builder
|
|
# Used by: pipeline.yml Dev stage
|
|
# ──────────────────────────────────────────────
|
|
FROM node:24-bookworm
|
|
|
|
# Rust toolchain (stable, minimal profile)
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
# Cross-compilation for linux-arm64
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc-aarch64-linux-gnu \
|
|
g++-aarch64-linux-gnu \
|
|
&& rustup target add aarch64-unknown-linux-gnu \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Verify toolchain
|
|
RUN node --version && rustc --version && cargo --version
|