rasmodev commited on
Commit
7c9d406
·
verified ·
1 Parent(s): 3da4005

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -19,10 +19,9 @@ COPY ./app.py /app/app.py
19
  # Copy the model and key components into the container
20
  COPY ./rf_key_components.pkl /app/rf_key_components.pkl
21
 
22
- # Set the correct permissions on /tmp and /app
23
  RUN mkdir /app/flagged && chmod -R 777 /app/flagged
24
 
25
-
26
  # Expose port 7860 for the Gradio application
27
  EXPOSE 7860
28
 
 
19
  # Copy the model and key components into the container
20
  COPY ./rf_key_components.pkl /app/rf_key_components.pkl
21
 
22
+ # Set permissions for the flagged directory
23
  RUN mkdir /app/flagged && chmod -R 777 /app/flagged
24
 
 
25
  # Expose port 7860 for the Gradio application
26
  EXPOSE 7860
27