We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 590cb4c commit b434d9fCopy full SHA for b434d9f
.dockerignore
@@ -28,6 +28,7 @@ __pycache__
28
# Documentation and non-essential files
29
*.md
30
!README.md
31
+!LICENSE
32
CLAUDE.md
33
UV_GUIDE.md
34
.cursorignore
@@ -55,9 +56,6 @@ tests/
55
56
test_*.py
57
*_test.py
58
-# UV lock file (using requirements.txt in Docker for now)
59
-uv.lock
60
-
61
# Other
62
.DS_Store
63
*.log
Dockerfile
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
10
libpq-dev \
11
&& rm -rf /var/lib/apt/lists/*
12
13
-COPY pyproject.toml uv.lock ./
+COPY pyproject.toml uv.lock README.md ./
14
15
RUN uv sync --frozen --no-group dev --no-cache
16
0 commit comments