Skip to content
Open
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
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad271f9/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad271f9_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad271f9/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad271f9_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27202/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27202_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27202/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27202_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27207/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_k6_6902ef3ab97fe23e2ad27207_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27207/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_k6_6902ef3ab97fe23e2ad27207_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
21 changes: 21 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27209/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_grafana_6902ef3ab97fe23e2ad27209_1.0

WORKDIR /app

# This image does not consistently include the Go toolchain. Install the
# version used by the task's test runner, then populate the repository's
# declared module graph while the image build has network access.
RUN if ! command -v go >/dev/null 2>&1; then \
apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates wget \
&& wget -q https://go.dev/dl/go1.23.1.linux-amd64.tar.gz -O /tmp/go.tar.gz \

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Architecture hard-coded to linux-amd64

The tarball name go1.23.1.linux-amd64.tar.gz will install the wrong binary — or fail at runtime under non-emulated execution — if the Docker build ever runs on an ARM64 host. The 37 other tasks rely on whatever Go the base image ships (which is presumably already arch-appropriate), but this task installs from a fixed URL. Consider using $(dpkg --print-architecture) or $(uname -m) to derive the correct suffix, or document the assumption that build infrastructure is always x86-64.

Prompt To Fix With AI
This is a comment left during a code review.
Path: data/tw/task-6902ef3ab97fe23e2ad27209/environment/Dockerfile
Line: 11

Comment:
**Architecture hard-coded to `linux-amd64`**

The tarball name `go1.23.1.linux-amd64.tar.gz` will install the wrong binary — or fail at runtime under non-emulated execution — if the Docker build ever runs on an ARM64 host. The 37 other tasks rely on whatever Go the base image ships (which is presumably already arch-appropriate), but this task installs from a fixed URL. Consider using `$(dpkg --print-architecture)` or `$(uname -m)` to derive the correct suffix, or document the assumption that build infrastructure is always x86-64.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Cursor Fix in Claude Code Fix in Codex

&& tar -C /usr/local -xzf /tmp/go.tar.gz \
&& rm /tmp/go.tar.gz \
Comment on lines +11 to +13

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 No checksum verification on Go tarball download

The tarball is fetched from go.dev/dl/ over HTTPS and extracted immediately without verifying a SHA-256 digest against a known-good value. A compromised CDN response or a partial download would be extracted silently; tar accepts partial archives as long as the stream doesn't terminate mid-block. The official Go download page publishes SHA-256 digests for every release — adding a sha256sum --check step before tar would close this gap and is a standard practice in secure Dockerfiles that fetch remote binaries.

Prompt To Fix With AI
This is a comment left during a code review.
Path: data/tw/task-6902ef3ab97fe23e2ad27209/environment/Dockerfile
Line: 11-13

Comment:
**No checksum verification on Go tarball download**

The tarball is fetched from `go.dev/dl/` over HTTPS and extracted immediately without verifying a SHA-256 digest against a known-good value. A compromised CDN response or a partial download would be extracted silently; `tar` accepts partial archives as long as the stream doesn't terminate mid-block. The official Go download page publishes SHA-256 digests for every release — adding a `sha256sum --check` step before `tar` would close this gap and is a standard practice in secure Dockerfiles that fetch remote binaries.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Cursor Fix in Claude Code Fix in Codex

&& rm -rf /var/lib/apt/lists/*; \
fi \
&& PATH="/usr/local/go/bin:${PATH}" go mod download
Comment on lines +8 to +16

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Conditional install may silently use wrong Go version

The guard if ! command -v go >/dev/null 2>&1 skips installation whenever any go binary is on the PATH — regardless of version. The comment states the intent is to install "the version used by the task's test runner" (1.23.1), but if the base image happens to ship Go at a different version the condition will pass, go mod download will run with that version, and the ENV PATH extension will simply prepend the non-existent /usr/local/go/bin without error. The baked module cache may then be incompatible with whatever go the agent or verifier actually resolves at runtime. Pinning the check to the exact version string (e.g. go version | grep -q go1.23.1) would make this intent explicit and enforceable.

Prompt To Fix With AI
This is a comment left during a code review.
Path: data/tw/task-6902ef3ab97fe23e2ad27209/environment/Dockerfile
Line: 8-16

Comment:
**Conditional install may silently use wrong Go version**

The guard `if ! command -v go >/dev/null 2>&1` skips installation whenever any `go` binary is on the PATH — regardless of version. The comment states the intent is to install "the version used by the task's test runner" (1.23.1), but if the base image happens to ship Go at a different version the condition will pass, `go mod download` will run with that version, and the `ENV PATH` extension will simply prepend the non-existent `/usr/local/go/bin` without error. The baked module cache may then be incompatible with whatever `go` the agent or verifier actually resolves at runtime. Pinning the check to the exact version string (e.g. `go version | grep -q go1.23.1`) would make this intent explicit and enforceable.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Cursor Fix in Claude Code Fix in Codex


# Dependencies must come from the image, not from public module services at
# agent or verifier runtime.
ENV PATH="/usr/local/go/bin:${PATH}" \
GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27209/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_grafana_6902ef3ab97fe23e2ad27209_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27211/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_k6_6902ef3ab97fe23e2ad27211_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27211/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_k6_6902ef3ab97fe23e2ad27211_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27214/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27214_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27214/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27214_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27223/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27223_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27223/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27223_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad2722e/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_drakkan_sftpgo_6902ef3ab97fe23e2ad2722e_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad2722e/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_drakkan_sftpgo_6902ef3ab97fe23e2ad2722e_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad2723f/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad2723f_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad2723f/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad2723f_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27245/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27245_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27245/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27245_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27247/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27247_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27247/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27247_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27248/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27248_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27248/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad27248_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad2724b/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad2724b_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad2724b/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_minio_minio_6902ef3ab97fe23e2ad2724b_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad2724e/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_drakkan_sftpgo_6902ef3ab97fe23e2ad2724e_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad2724e/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_drakkan_sftpgo_6902ef3ab97fe23e2ad2724e_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27256/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27256_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27256/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27256_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad2725c/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_k6_6902ef3ab97fe23e2ad2725c_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad2725c/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_grafana_k6_6902ef3ab97fe23e2ad2725c_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad2725e/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad2725e_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad2725e/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad2725e_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27260/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27260_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27260/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27260_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27262/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27262_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27262/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27262_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
9 changes: 9 additions & 0 deletions data/tw/task-6902ef3ab97fe23e2ad27264/environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
FROM ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27264_1.0

WORKDIR /app

# Populate the repository pinned Go module graph while the image build has
# network access. Agent and verifier runtime must use only this baked cache.
RUN go mod download

ENV GOPROXY=off \
GOSUMDB=off
1 change: 0 additions & 1 deletion data/tw/task-6902ef3ab97fe23e2ad27264/task.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ allowed_hosts = [

[environment]
build_timeout_sec = 600.0
docker_image = "ghcr.io/scaleapi/swe-atlas:swe_atlas_TW_trufflesecurity_trufflehog_6902ef3ab97fe23e2ad27264_1.0"
cpus = 16
memory_mb = 16384
storage_mb = 20480
Expand Down
Loading