Spaces:
Paused
Paused
Commit
·
cfb8753
1
Parent(s):
9064600
Fixed Dockerfile v14
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -12,8 +12,8 @@ COPY requirements.txt .
|
|
12 |
RUN pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
# Create necessary directories and set permissions
|
15 |
-
RUN mkdir -p /app/logs /app/hf_cache /app/
|
16 |
-
&& chmod 777 /app/logs /app/hf_cache /app/
|
17 |
|
18 |
# Copy the application code
|
19 |
COPY main /app/main
|
|
|
12 |
RUN pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
# Create necessary directories and set permissions
|
15 |
+
RUN mkdir -p /app/logs /app/hf_cache /app/main/.cache /app/models \
|
16 |
+
&& chmod 777 /app/logs /app/hf_cache /app/main/.cache /app/models
|
17 |
|
18 |
# Copy the application code
|
19 |
COPY main /app/main
|