Skip to content

Commit 5e203fe

Browse files
committed
fix: include README.md and LICENSE in Dockerfile for package build
1 parent 61c6b0e commit 5e203fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker/Dockerfile.sql_to_arc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM python:3.12.12-alpine3.23 AS package-builder
44
WORKDIR /build
55

66
# Copy project files needed for package build
7-
COPY pyproject.toml uv.lock ./
7+
COPY pyproject.toml uv.lock README.md LICENSE ./
88
COPY middleware ./middleware
99

1010
# Upgrade pip and install uv
@@ -44,7 +44,7 @@ ARG APP_VERSION=0.0.0
4444

4545
# Bring in the pre-built wheel and project metadata
4646
COPY --from=package-builder /build/dist/*.whl /tmp/wheels/
47-
COPY pyproject.toml uv.lock ./
47+
COPY pyproject.toml uv.lock README.md LICENSE ./
4848

4949
# We still need the source code because uv sync requires all workspace members (e.g., middleware/sql_to_arc)
5050
# to be physically present to validate the environment against the lockfile.

0 commit comments

Comments
 (0)