Spaces:
Runtime error
Runtime error
Joshua Sundance Bailey
commited on
Commit
·
026ee9a
1
Parent(s):
b63bf3a
pin streamlit version, add --upgrade to pip install
Browse files- Dockerfile +1 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
|
@@ -9,7 +9,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
| 9 |
|
| 10 |
RUN pip install --user --no-cache-dir --upgrade pip
|
| 11 |
COPY ./requirements.txt /home/appuser/requirements.txt
|
| 12 |
-
RUN pip install --user --no-cache-dir -r /home/appuser/requirements.txt
|
| 13 |
|
| 14 |
COPY ./langchain-streamlit-demo/* /home/appuser/langchain-streamlit-demo/
|
| 15 |
|
|
|
|
| 9 |
|
| 10 |
RUN pip install --user --no-cache-dir --upgrade pip
|
| 11 |
COPY ./requirements.txt /home/appuser/requirements.txt
|
| 12 |
+
RUN pip install --user --no-cache-dir --upgrade -r /home/appuser/requirements.txt
|
| 13 |
|
| 14 |
COPY ./langchain-streamlit-demo/* /home/appuser/langchain-streamlit-demo/
|
| 15 |
|
requirements.txt
CHANGED
|
@@ -2,6 +2,6 @@ anthropic
|
|
| 2 |
langchain
|
| 3 |
langsmith
|
| 4 |
openai
|
| 5 |
-
streamlit
|
| 6 |
streamlit-feedback
|
| 7 |
tiktoken
|
|
|
|
| 2 |
langchain
|
| 3 |
langsmith
|
| 4 |
openai
|
| 5 |
+
streamlit==1.26.0
|
| 6 |
streamlit-feedback
|
| 7 |
tiktoken
|