Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -248,3 +248,7 @@ local_experiments/

experiments/kdd 2026


# outputs from `prime eval run`
./outputs
./environments/*/outputs
3 changes: 3 additions & 0 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ RUN uv pip install --system -r pyproject.toml
# Copy application code
COPY . .

# Copy seed data and test suites from repo root (needed by seed scripts)
COPY ../examples /examples

# Create startup script
RUN echo '#!/bin/sh\n\
set -e\n\
Expand Down
Loading