AurelioAguirre commited on
Commit
cfb8753
·
1 Parent(s): 9064600

Fixed Dockerfile v14

Browse files
Files changed (1) hide show
  1. 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/app/.cache /app/models \
16
- && chmod 777 /app/logs /app/hf_cache /app/app/.cache /app/models
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