myyim commited on
Commit
b0389b1
·
verified ·
1 Parent(s): 60401b7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -16,10 +16,9 @@ COPY src/ ./src/
16
 
17
  RUN pip3 install --upgrade pip
18
  RUN pip3 install -r requirements.txt
19
- RUN python -m spacy download en_core_web_sm
20
 
21
  EXPOSE 8501
22
 
23
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
24
 
25
- ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
16
 
17
  RUN pip3 install --upgrade pip
18
  RUN pip3 install -r requirements.txt
 
19
 
20
  EXPOSE 8501
21
 
22
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
23
 
24
+ ENTRYPOINT ["streamlit", "run", "src/app.py", "--server.port=8501", "--server.address=0.0.0.0"]