maahi2412 commited on
Commit
d979d70
·
verified ·
1 Parent(s): 58013a0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -30,9 +30,9 @@ RUN pip install --no-cache-dir \
30
  sentencepiece \
31
  accelerate
32
 
33
- # Create uploads and cache directories with proper permissions
34
- RUN mkdir -p /app/uploads /app/cache && \
35
- chmod -R 777 /app/uploads /app/cache
36
 
37
  # Set environment variable for Hugging Face cache
38
  ENV HF_HOME=/app/cache
 
30
  sentencepiece \
31
  accelerate
32
 
33
+ # Create uploads, cache, and fine-tuning directories with proper permissions
34
+ RUN mkdir -p /app/uploads /app/cache /app/pegasus_finetune /app/bert_finetune /app/legalbert_finetune && \
35
+ chmod -R 777 /app/uploads /app/cache /app/pegasus_finetune /app/bert_finetune /app/legalbert_finetune
36
 
37
  # Set environment variable for Hugging Face cache
38
  ENV HF_HOME=/app/cache