Kaballas commited on
Commit
4523553
·
1 Parent(s): 9b88aa8
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -29,7 +29,10 @@ RUN pip install --no-cache-dir uv
29
 
30
  WORKDIR /app
31
 
32
- # Copy project files
 
 
 
33
  COPY . /app
34
 
35
  # Install project dependencies
 
29
 
30
  WORKDIR /app
31
 
32
+ # Ensure uv cache dir exists and is writable
33
+ RUN mkdir -p /app/.cache/uv
34
+ ENV UV_CACHE_DIR=/app/.cache/uv
35
+
36
  COPY . /app
37
 
38
  # Install project dependencies