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
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ tests/

# Documentation
*.md
!README.md
docs/

# Pre-commit
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ FROM os-base AS source
# Copy only what the runtime image needs. The package is installed as an editable
# pixi dependency (`sampleworks = { editable = true, path = "." }`), so source
# must remain in the public image.
COPY pyproject.toml pixi.lock LICENSE ./
COPY pyproject.toml pixi.lock LICENSE README.md ./
COPY analyses/ ./analyses/
COPY experiments/ ./experiments/
COPY src/ ./src/
COPY scripts/ ./scripts/
Expand Down
Loading