- Update Dockerfile image name and package.json URLs to singularity-ng/singularity-foundry - Add uv to nix develop shell in flake.nix - Rename resolveGsdRoot → resolveSFRoot in src/cli.ts - Add PROXY_FAMILY_PRIORITY routing table + sortByFamilyPriority to proxy-server.ts - Fix duplicate scope key and simplify link-workspace-packages.cjs - Remove duplicate conditions in postinstall.js - Add ES2024 target/lib to tsconfig.extensions.json - Delete obsolete GSD recovery scripts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
792 B
Docker
21 lines
792 B
Docker
# ──────────────────────────────────────────────
|
|
# Runtime
|
|
# Image: ghcr.io/singularity-ng/singularity-foundry
|
|
# Used by: end users via docker run
|
|
# ──────────────────────────────────────────────
|
|
FROM node:24-slim AS runtime
|
|
|
|
# Git is required for SF's git operations
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install SF globally — version is controlled by the build arg
|
|
ARG SF_VERSION=latest
|
|
RUN npm install -g sf-run@${SF_VERSION}
|
|
|
|
# Default working directory for user projects
|
|
WORKDIR /workspace
|
|
|
|
ENTRYPOINT ["sf"]
|
|
CMD ["--help"]
|