WebashalarForML commited on
Commit
390a2a6
·
verified ·
1 Parent(s): fbf6006

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -73,6 +73,9 @@ RUN pip install --no-cache-dir -r requirements.txt
73
  # Copy application code
74
  COPY . .
75
 
 
 
 
76
  # Expose port (HF Spaces typically uses 7860)
77
  EXPOSE 7860
78
 
 
73
  # Copy application code
74
  COPY . .
75
 
76
+ # Create logs directory and give full access
77
+ RUN mkdir -p /app/logs && chmod 777 /app/logs
78
+
79
  # Expose port (HF Spaces typically uses 7860)
80
  EXPOSE 7860
81