Joffrey Thomas commited on
Commit
c8516c9
·
1 Parent(s): 5ccb344

UV cache dir

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -5,6 +5,9 @@ WORKDIR /app
5
  # Install uv for faster package management
6
  RUN pip install uv
7
 
 
 
 
8
  # Copy requirements file
9
  COPY requirements.txt .
10
 
 
5
  # Install uv for faster package management
6
  RUN pip install uv
7
 
8
+ # Set UV_CACHE_DIR to a writable location
9
+ ENV UV_CACHE_DIR /app/.uv_cache
10
+
11
  # Copy requirements file
12
  COPY requirements.txt .
13