Skip to content

Commit b434d9f

Browse files
committed
fix: delete ignoring uv lock
1 parent 590cb4c commit b434d9f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.dockerignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ __pycache__
2828
# Documentation and non-essential files
2929
*.md
3030
!README.md
31+
!LICENSE
3132
CLAUDE.md
3233
UV_GUIDE.md
3334
.cursorignore
@@ -55,9 +56,6 @@ tests/
5556
test_*.py
5657
*_test.py
5758

58-
# UV lock file (using requirements.txt in Docker for now)
59-
uv.lock
60-
6159
# Other
6260
.DS_Store
6361
*.log

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
1010
libpq-dev \
1111
&& rm -rf /var/lib/apt/lists/*
1212

13-
COPY pyproject.toml uv.lock ./
13+
COPY pyproject.toml uv.lock README.md ./
1414

1515
RUN uv sync --frozen --no-group dev --no-cache
1616

0 commit comments

Comments
 (0)