Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
linancn committed Feb 23, 2024
1 parent 3cdd34f commit d00860f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.wix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.5-bullseye
FROM python:3.11-bullseye

# Install dependencies
RUN apt-get update
Expand All @@ -18,13 +18,13 @@ COPY docker/wix/nginx.conf /etc/nginx/nginx.conf
COPY docker/wix/default /etc/nginx/sites-enabled/default

# Copy the requirements.txt into the container at /app/requirements.txt
COPY requirements.txt requirements.txt
COPY requirements_freeze.txt requirements.txt

# Upgrade pip
RUN pip install --upgrade pip

# Install pip packages
RUN pip install -r requirements.txt --upgrade
RUN pip install -r requirements.txt

# Copy the current directory contents into the container at /app
COPY .streamlit/ ./.streamlit/
Expand Down
16 changes: 11 additions & 5 deletions requirements_freeze.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ antlr4-python3-runtime==4.9.3
anyio==4.3.0
arxiv==2.1.0
attrs==23.2.0
Authlib==1.3.0
Babel==2.14.0
backoff==2.2.1
beautifulsoup4==4.12.3
Expand All @@ -21,15 +22,15 @@ colorama==0.4.6
coloredlogs==15.0.1
contourpy==1.2.0
cryptography==42.0.3
curl_cffi==0.6.0b9
curl_cffi==0.6.1
cycler==0.12.1
dataclasses-json==0.6.4
dataclasses-json-speakeasy==0.5.11
Deprecated==1.2.14
deprecation==2.1.0
distro==1.9.0
docutils==0.20.1
duckduckgo_search==4.4.3
duckduckgo_search==4.5.0
effdet==0.4.1
emoji==2.10.1
et-xmlfile==1.1.0
Expand All @@ -45,6 +46,9 @@ fsspec==2024.2.0
gitdb==4.0.11
GitPython==3.1.42
greenlet==3.0.3
grpcio==1.62.0
grpcio-health-checking==1.62.0
grpcio-tools==1.62.0
h11==0.14.0
httpcore==1.0.3
httptools==0.6.1
Expand All @@ -64,10 +68,11 @@ jsonpointer==2.4
jsonschema==4.21.1
jsonschema-specifications==2023.12.1
kiwisolver==1.4.5
langchain==0.1.8
langchain==0.1.9
langchain-community==0.0.21
langchain-core==0.1.24
langchain-openai==0.0.6
langchain-core==0.1.26
langchain-openai==0.0.7
langchain-pinecone==0.0.3
langdetect==1.0.9
langsmith==0.1.3
layoutparser==0.3.4
Expand Down Expand Up @@ -194,6 +199,7 @@ uvloop==0.19.0
validators==0.22.0
watchdog==4.0.0
watchfiles==0.21.0
weaviate-client==4.4.4
websockets==12.0
wikipedia==1.4.0
wrapt==1.16.0
Expand Down

0 comments on commit d00860f

Please sign in to comment.