Skip to content
Open
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
2 changes: 1 addition & 1 deletion Dockerfile.claude-safe
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Works on both arm64 (Apple Silicon / OrbStack) and amd64

FROM docker/sandbox-templates:shell
USER root

Check failure on line 9 in Dockerfile.claude-safe

View workflow job for this annotation

GitHub Actions / Lint

DL3066 info: Non-numeric user-id may not be resolvable by host system

# Detect architecture once — reuse in all RUN steps
# TARGETARCH is set by BuildKit (arm64 or amd64)
Expand Down Expand Up @@ -42,7 +42,7 @@
# renovate: datasource=github-releases depName=ahmetb/kubectx
ARG KUBECTX_VERSION=v0.11.0
# renovate: datasource=github-releases depName=schollz/croc
ARG CROC_VERSION=v10.7.0
ARG CROC_VERSION=v11.2.4
# renovate: datasource=github-releases depName=FiloSottile/mkcert
ARG MKCERT_VERSION=v1.4.4
# renovate: datasource=github-releases depName=go-task/task
Expand Down Expand Up @@ -97,7 +97,7 @@
# ── All binary tools — downloaded in parallel ──
# Each tool runs in a background subshell; pids are tracked for error propagation.
# Arch aliases: ARCH_MUSL = aarch64/x86_64, ARCH_X = arm64/x86_64 (for tools using x86_64 on amd64)
RUN set -e; \

Check failure on line 100 in Dockerfile.claude-safe

View workflow job for this annotation

GitHub Actions / Lint

SC3054 warning: In POSIX sh, array references are undefined.
ARCH_MUSL=$([ "$TARGETARCH" = "arm64" ] && echo "aarch64" || echo "x86_64"); \
ARCH_X=$([ "$TARGETARCH" = "amd64" ] && echo "x86_64" || echo "$TARGETARCH"); \
pids=(); \
Expand Down Expand Up @@ -243,4 +243,4 @@
ARG CLAUDE_CODE_CACHEBUST=0
RUN npm install -g @anthropic-ai/claude-code@latest

USER agent

Check failure on line 246 in Dockerfile.claude-safe

View workflow job for this annotation

GitHub Actions / Lint

DL3066 info: Non-numeric user-id may not be resolvable by host system