Skip to content

Commit 43e5985

Browse files
committed
refactor: add git installation and configuration for development in Dockerfile; update title display in ask_uos_chat.py
1 parent 8946ece commit 43e5985

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ RUN echo $(which python)
7575
# Install Playwright browsers
7676
RUN playwright install
7777
RUN crawl4ai-setup
78+
79+
# Needed for dev in container
80+
RUN apt-get install git -y
81+
RUN git config --global --add safe.directory /app
7882
# Expose the port that Streamlit will run on
7983
EXPOSE 8501
8084

pages/ask_uos_chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ def log_feedback(self):
738738

739739
def run(self):
740740
"""Main method to run the application logic."""
741-
# st.title("ask.UOS")
741+
st.title("ask.UOS")
742742
initialize_session_sate()
743743
RemoveEmptyElementContainer()
744744
# Get or create user ID using our method

0 commit comments

Comments
 (0)