From a4af12498c3ac56228845124c07738bdf27654db Mon Sep 17 00:00:00 2001 From: Denis Date: Tue, 30 Jun 2026 00:08:59 +0100 Subject: [PATCH] Fix docker build v2 --- .dockerignore | 1 + Dockerfile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 46272343..afec0414 100644 --- a/.dockerignore +++ b/.dockerignore @@ -37,6 +37,7 @@ tests/ # Documentation *.md +!README.md docs/ # Pre-commit diff --git a/Dockerfile b/Dockerfile index ec966cac..e6529be0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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/