Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -6,6 +6,9 @@ WORKDIR /app
|
|
6 |
# Install system dependencies
|
7 |
RUN apt-get update && apt-get install -y espeak-ng
|
8 |
|
|
|
|
|
|
|
9 |
# Copy project files
|
10 |
COPY . /app
|
11 |
|
|
|
6 |
# Install system dependencies
|
7 |
RUN apt-get update && apt-get install -y espeak-ng
|
8 |
|
9 |
+
# Set Hugging Face cache directory to a writable location
|
10 |
+
ENV HF_HOME="/app/.cache/huggingface"
|
11 |
+
|
12 |
# Copy project files
|
13 |
COPY . /app
|
14 |
|