Skip to content

Commit c6310bb

Browse files
sjarmakclaude
andcommitted
fix: switch Alpine sg_only Dockerfiles to bookworm for OpenHands compat
OpenHands install script uses apt-get which doesn't exist on Alpine. Switch golang:1.23-alpine -> golang:1.23-bookworm for 2 design tasks: - envoy-routeconfig-dep-chain-001 - k8s-typemeta-dep-chain-001 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3803906 commit c6310bb

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

benchmarks/csb_sdlc_design/envoy-routeconfig-dep-chain-001/environment/Dockerfile.sg_only

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
# Empty workspace — agent uses Sourcegraph MCP for code access.
33
# Verifier clones mirror(s) at verification time via clone manifest.
44

5-
FROM golang:1.23-alpine
5+
FROM golang:1.23-bookworm
66

77
ENV SOURCEGRAPH_REPOS=sg-evals/istio--4c1f845d,sg-evals/go-control-plane--71637ad6,sg-evals/data-plane-api--84e84367
88

99
ENV DEBIAN_FRONTEND=noninteractive
10-
RUN apk add --no-cache \
10+
RUN apt-get update && apt-get install -y --no-install-recommends \
1111
git \
1212
python3 \
1313
curl \
14-
bash
14+
ca-certificates \
15+
&& rm -rf /var/lib/apt/lists/*
1516

1617
WORKDIR /workspace
1718

benchmarks/csb_sdlc_design/k8s-typemeta-dep-chain-001/environment/Dockerfile.sg_only

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
# Empty workspace — agent uses Sourcegraph MCP for code access.
33
# Verifier clones mirror(s) at verification time via clone manifest.
44

5-
FROM golang:1.23-alpine
5+
FROM golang:1.23-bookworm
66

77
ENV SOURCEGRAPH_REPOS=sg-evals/kubernetes--31bf3ed4,sg-evals/api--f32ed1d6,sg-evals/apimachinery--b2e9f88f
88

99
ENV DEBIAN_FRONTEND=noninteractive
10-
RUN apk add --no-cache \
10+
RUN apt-get update && apt-get install -y --no-install-recommends \
1111
git \
1212
python3 \
1313
curl \
14-
bash
14+
ca-certificates \
15+
&& rm -rf /var/lib/apt/lists/*
1516

1617
WORKDIR /workspace
1718

0 commit comments

Comments
 (0)