supertskone commited on
Commit
7af9a9b
·
verified ·
1 Parent(s): e43ca22

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -3
Dockerfile CHANGED
@@ -42,9 +42,13 @@ ENV TRANSFORMERS_CACHE=/app/cache
42
  RUN mkdir -p /app/cache/hub
43
  RUN chmod -R 777 /app/cache
44
 
45
- # Expose port 8501 for Streamlit and port 5000 for Flask
46
- EXPOSE 8501
47
- EXPOSE 5000
 
 
 
 
48
 
49
  # Run data loading, backend, and frontend
50
  # CMD ["sh", "-c", "python load_data.py & python run.py & streamlit run ui/app.py --server.port=8501 --server.address=0.0.0.0"]
 
42
  RUN mkdir -p /app/cache/hub
43
  RUN chmod -R 777 /app/cache
44
 
45
+ # LOCAL: Expose port 8501 for Streamlit and port 5000 for Flask
46
+ # EXPOSE 8501
47
+ # EXPOSE 5000
48
+
49
+ # HF SPACES:
50
+ # Expose the port for Streamlit
51
+ EXPOSE 7860
52
 
53
  # Run data loading, backend, and frontend
54
  # CMD ["sh", "-c", "python load_data.py & python run.py & streamlit run ui/app.py --server.port=8501 --server.address=0.0.0.0"]