Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -6,7 +6,8 @@ WORKDIR /app/src
|
|
6 |
# Expose the port that Gradio will run on
|
7 |
EXPOSE 7860
|
8 |
|
9 |
-
|
|
|
10 |
|
11 |
# Run app.py when the container launches
|
12 |
CMD ["python", "-m", "citance_analysis.server.gradio_app"]
|
|
|
6 |
# Expose the port that Gradio will run on
|
7 |
EXPOSE 7860
|
8 |
|
9 |
+
# Give permissions
|
10 |
+
RUN chmod -R 777 /app
|
11 |
|
12 |
# Run app.py when the container launches
|
13 |
CMD ["python", "-m", "citance_analysis.server.gradio_app"]
|