RANA
commited on
Commit
β’
8f03764
1
Parent(s):
8ef8d02
Fully Update 1
Browse files- Dockerfile +5 -10
- README.md +0 -10
- models/__pycache__/model_ir.cpython-39.pyc +0 -0
- models/__pycache__/scrapper.cpython-39.pyc +0 -0
- requirements β requirements.txt +1 -4
Dockerfile
CHANGED
@@ -1,20 +1,15 @@
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
-
|
4 |
-
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
5 |
|
6 |
-
|
7 |
-
WORKDIR /ARAZIM
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
RUN
|
12 |
|
13 |
-
# Copy the rest of the application files
|
14 |
COPY . .
|
15 |
|
16 |
-
# Expose the desired port (if required)
|
17 |
EXPOSE 7860
|
18 |
|
19 |
-
# Start the Flask application
|
20 |
CMD ["flask", "run", "--host=0.0.0.0", "--port=7860"]
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
COPY requirements.txt .
|
|
|
4 |
|
5 |
+
RUN pip install -r requirements.txt
|
|
|
6 |
|
7 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
8 |
+
|
9 |
+
RUN python -c "import bcrypt; import numpy"
|
10 |
|
|
|
11 |
COPY . .
|
12 |
|
|
|
13 |
EXPOSE 7860
|
14 |
|
|
|
15 |
CMD ["flask", "run", "--host=0.0.0.0", "--port=7860"]
|
README.md
DELETED
@@ -1,10 +0,0 @@
|
|
1 |
-
---
|
2 |
-
title: ARAZIM
|
3 |
-
emoji: π
|
4 |
-
colorFrom: purple
|
5 |
-
colorTo: yellow
|
6 |
-
sdk: docker
|
7 |
-
pinned: false
|
8 |
-
---
|
9 |
-
|
10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/__pycache__/model_ir.cpython-39.pyc
DELETED
Binary file (2.55 kB)
|
|
models/__pycache__/scrapper.cpython-39.pyc
DELETED
Binary file (2.45 kB)
|
|
requirements β requirements.txt
RENAMED
@@ -7,7 +7,6 @@ blinker==1.6.2
|
|
7 |
certifi==2023.5.7
|
8 |
cffi==1.15.1
|
9 |
charset-normalizer==3.1.0
|
10 |
-
clang==5.0
|
11 |
click==8.1.3
|
12 |
colorama==0.4.6
|
13 |
deep-translator==1.11.1
|
@@ -15,7 +14,6 @@ dnspython==2.3.0
|
|
15 |
exceptiongroup==1.1.1
|
16 |
Flask==2.3.2
|
17 |
Flask-PyMongo==2.3.0
|
18 |
-
flatbuffers==1.12
|
19 |
gitdb==4.0.10
|
20 |
GitPython==3.1.31
|
21 |
grpcio==1.54.0
|
@@ -27,7 +25,6 @@ importlib-metadata==6.6.0
|
|
27 |
itsdangerous==2.1.2
|
28 |
Jinja2==3.1.2
|
29 |
joblib==1.2.0
|
30 |
-
keras-nightly==2.5.0.dev2021032900
|
31 |
lazy_loader==0.2
|
32 |
MarkupSafe==2.1.2
|
33 |
nltk==3.8.1
|
@@ -74,4 +71,4 @@ urllib3==2.0.2
|
|
74 |
Werkzeug==2.3.4
|
75 |
wrapt==1.12.1
|
76 |
wsproto==1.2.0
|
77 |
-
zipp==3.15.0
|
|
|
7 |
certifi==2023.5.7
|
8 |
cffi==1.15.1
|
9 |
charset-normalizer==3.1.0
|
|
|
10 |
click==8.1.3
|
11 |
colorama==0.4.6
|
12 |
deep-translator==1.11.1
|
|
|
14 |
exceptiongroup==1.1.1
|
15 |
Flask==2.3.2
|
16 |
Flask-PyMongo==2.3.0
|
|
|
17 |
gitdb==4.0.10
|
18 |
GitPython==3.1.31
|
19 |
grpcio==1.54.0
|
|
|
25 |
itsdangerous==2.1.2
|
26 |
Jinja2==3.1.2
|
27 |
joblib==1.2.0
|
|
|
28 |
lazy_loader==0.2
|
29 |
MarkupSafe==2.1.2
|
30 |
nltk==3.8.1
|
|
|
71 |
Werkzeug==2.3.4
|
72 |
wrapt==1.12.1
|
73 |
wsproto==1.2.0
|
74 |
+
zipp==3.15.0
|