nakas commited on
Commit
a6f1b11
·
verified ·
1 Parent(s): dd4da20

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -7
Dockerfile CHANGED
@@ -17,14 +17,14 @@ RUN apt-get update && \
17
  COPY requirements.txt .
18
  RUN pip install --no-cache-dir -r requirements.txt
19
 
20
- # Copy application files
21
- COPY . .
22
-
23
  # Create directory for examples
24
- RUN mkdir -p gradio_examples && touch gradio_examples/__init__.py
 
 
 
25
 
26
- # Expose port for Streamlit
27
- EXPOSE 8501
28
 
29
  # Command to run the application
30
- CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
17
  COPY requirements.txt .
18
  RUN pip install --no-cache-dir -r requirements.txt
19
 
 
 
 
20
  # Create directory for examples
21
+ RUN mkdir -p examples
22
+
23
+ # Copy application files
24
+ COPY app.py .
25
 
26
+ # Expose port for Gradio
27
+ EXPOSE 7860
28
 
29
  # Command to run the application
30
+ CMD ["python", "app.py"]