CodeHima commited on
Commit
d9d861d
·
verified ·
1 Parent(s): 42d6184

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -19
Dockerfile CHANGED
@@ -1,19 +1,16 @@
1
- FROM python:3.9
2
-
3
- WORKDIR /code
4
-
5
- COPY ./requirements.txt /code/requirements.txt
6
-
7
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
-
9
- # Download the spaCy model
10
- RUN python -m spacy download en_core_web_sm
11
-
12
- # Link the spaCy model
13
- RUN python -m spacy link en_core_web_sm en
14
-
15
- COPY . /code
16
-
17
- EXPOSE 7860
18
-
19
- CMD ["streamlit", "run", "app.py", "--server.address", "0.0.0.0", "--server.port", "7860"]
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /code
4
+
5
+ COPY ./requirements.txt /code/requirements.txt
6
+
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
+
9
+ # Download the spaCy model
10
+ RUN python -m spacy download en_core_web_sm
11
+
12
+ COPY . /code
13
+
14
+ EXPOSE 7860
15
+
16
+ CMD ["streamlit", "run", "app.py", "--server.address", "0.0.0.0", "--server.port", "7860"]