AI-RESEARCHER-2024 commited on
Commit
1a0f6ba
β€’
1 Parent(s): bf22b40

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -46,8 +46,8 @@ RUN pip install --user --no-cache-dir -r requirements.txt
46
  # Create a chainlit.md file
47
  RUN echo "# Welcome to RAG Chainlit Application! πŸ‘‹\n\nThis is a Retrieval-Augmented Generation application using Llama.cpp." > $APP_HOME/chainlit.md
48
 
49
- # Expose port 8000
50
- EXPOSE 8000
51
 
52
  # Start the Chainlit app
53
  CMD ["chainlit", "run", "app.py", "--port", "7860", "-h"]
 
46
  # Create a chainlit.md file
47
  RUN echo "# Welcome to RAG Chainlit Application! πŸ‘‹\n\nThis is a Retrieval-Augmented Generation application using Llama.cpp." > $APP_HOME/chainlit.md
48
 
49
+ # Expose port 7860
50
+ EXPOSE 7860
51
 
52
  # Start the Chainlit app
53
  CMD ["chainlit", "run", "app.py", "--port", "7860", "-h"]