Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -15,7 +15,7 @@ WORKDIR /app
|
|
| 15 |
COPY . .
|
| 16 |
|
| 17 |
# Install Python dependencies
|
| 18 |
-
RUN pip install --no-cache-dir
|
| 19 |
|
| 20 |
# Set environment variable for the model download path
|
| 21 |
ENV XDG_CACHE_HOME=/app/.local
|
|
|
|
| 15 |
COPY . .
|
| 16 |
|
| 17 |
# Install Python dependencies
|
| 18 |
+
RUN pip install --no-cache-dir --user -r requirements.txt
|
| 19 |
|
| 20 |
# Set environment variable for the model download path
|
| 21 |
ENV XDG_CACHE_HOME=/app/.local
|