gabrielaltay commited on
Commit
271bf40
·
1 Parent(s): 024288c
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -27,8 +27,8 @@ WORKDIR $HOME/app
27
  # Copy dependency files first for better caching
28
  COPY --chown=user pyproject.toml uv.lock ./
29
 
30
- # Install dependencies (this layer will be cached when only code changes)
31
- RUN uv sync --frozen
32
 
33
  # Copy source code
34
  COPY --chown=user src/ ./src/
 
27
  # Copy dependency files first for better caching
28
  COPY --chown=user pyproject.toml uv.lock ./
29
 
30
+ # Install dependencies only (exclude local package for now)
31
+ RUN uv sync --frozen --no-install-project
32
 
33
  # Copy source code
34
  COPY --chown=user src/ ./src/