Spaces:
Sleeping
Sleeping
Add application file
Browse files- Dockerfile +2 -0
- requirements.txt +3 -3
Dockerfile
CHANGED
@@ -10,6 +10,8 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
10 |
|
11 |
COPY --chown=user . /app
|
12 |
|
|
|
|
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
|
15 |
# Expose the port (default for Hugging Face is 7860)
|
|
|
10 |
|
11 |
COPY --chown=user . /app
|
12 |
|
13 |
+
RUN ls /app/lib/en_core_web_lg-3.7.1-py3-none-any.whl
|
14 |
+
|
15 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
16 |
|
17 |
# Expose the port (default for Hugging Face is 7860)
|
requirements.txt
CHANGED
@@ -23,6 +23,6 @@ demoji
|
|
23 |
pytest
|
24 |
grapheme
|
25 |
#../lib/aicloudlibs-0.1.0-py3-none-any.whl
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
23 |
pytest
|
24 |
grapheme
|
25 |
#../lib/aicloudlibs-0.1.0-py3-none-any.whl
|
26 |
+
./app/lib/better_profanity-2.0.0-py3-none-any.whl
|
27 |
+
./app/lib/privacy-1.0.9-py3-none-any.whl
|
28 |
+
./app/lib/en_core_web_lg-3.7.1-py3-none-any.whl
|