PetrosStav commited on
Commit
6e6a780
·
verified ·
1 Parent(s): 59ae761

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -3,5 +3,8 @@ FROM intelligencenoborders/scinobo-citance-analysis:v0.1.0
3
  # Set the working directory in the container
4
  WORKDIR /app/src
5
 
 
 
 
6
  # Run app.py when the container launches
7
- RUN python -m citance_analysis.server.gradio_app
 
3
  # Set the working directory in the container
4
  WORKDIR /app/src
5
 
6
+ # Expose the port that Gradio will run on
7
+ EXPOSE 7860
8
+
9
  # Run app.py when the container launches
10
+ CMD "python -m citance_analysis.server.gradio_app"