diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 76c0a51..0000000 --- a/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM python:3.11-slim - -WORKDIR /app - -RUN apt-get update && apt-get install -y \ - build-essential \ - curl \ - software-properties-common \ - git \ - && rm -rf /var/lib/apt/lists/* - -RUN git clone https://github.com/rajtilakjee/keepyourmouthshut.git . - -RUN pip3 install -r requirements.txt - -EXPOSE 8501 - -HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health - -ENTRYPOINT ["streamlit", "run", "src/main.py", "--server.port=8501", "--server.address=0.0.0.0"] diff --git a/src/main.py b/src/main.py index 9a5224f..710381f 100644 --- a/src/main.py +++ b/src/main.py @@ -176,7 +176,6 @@ st.set_page_config( ) st.title("KeepYourMouthShut") -st.snow() with st.sidebar: openai_api_key = st.text_input("OpenAI API Key", type="password")