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