xxx
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -29,7 +29,10 @@ RUN pip install --no-cache-dir uv
|
|
29 |
|
30 |
WORKDIR /app
|
31 |
|
32 |
-
#
|
|
|
|
|
|
|
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
|