Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|
| 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 |
|