Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Neel317/ShopSync
Browse files Browse the repository at this point in the history
  • Loading branch information
Neel317 committed Nov 27, 2023
2 parents a2ba2f0 + 7081734 commit 53fbb15
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ FROM python:3.9-slim-buster

WORKDIR /ShopSync

COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY requirements_docker.txt requirements_docker.txt
RUN pip3 install -r requirements_docker.txt

COPY . .

Expand Down
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ fastapi==0.103.1
nest_asyncio==1.5.1
pydantic==2.3.0
pyshorteners==1.0.1
requests==2.26.0
uvicorn==0.15.0
anyio==3.7.1
certifi==2021.10.8
Expand All @@ -12,10 +13,8 @@ idna==3.3
sniffio==1.2.0
soupsieve==2.2.1
starlette==0.27.0
streamlit==1.1.0
tabulate==0.8.9
typing-extensions==4.7.1
urllib3==1.26.7
pandas==1.3.0
protobuf==3.20.0
streamlit==1.28.2
requests==2.27
pandas==1.1.5
21 changes: 21 additions & 0 deletions requirements_docker.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
beautifulsoup4==4.10.0
ebaysdk==2.2.0
fastapi==0.103.1
nest_asyncio==1.5.1
pydantic==2.3.0
pyshorteners==1.0.1
uvicorn==0.15.0
anyio==3.7.1
certifi==2021.10.8
charset-normalizer==2.0.7
idna==3.3
sniffio==1.2.0
soupsieve==2.2.1
starlette==0.27.0
tabulate==0.8.9
typing-extensions==4.7.1
urllib3==1.26.7
pandas==1.3.0
protobuf==3.20.0
streamlit==1.28.2
requests==2.27

0 comments on commit 53fbb15

Please sign in to comment.