Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -3,7 +3,7 @@ FROM python:3.9-slim
|
|
3 |
WORKDIR /app
|
4 |
COPY . .
|
5 |
|
6 |
-
RUN pip install --
|
7 |
|
8 |
# Menyetel HF_HOME environment variable untuk cache model Hugging Face
|
9 |
ENV HF_HOME /app/.cache/huggingface
|
|
|
3 |
WORKDIR /app
|
4 |
COPY . .
|
5 |
|
6 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
7 |
|
8 |
# Menyetel HF_HOME environment variable untuk cache model Hugging Face
|
9 |
ENV HF_HOME /app/.cache/huggingface
|