alex-yu commited on
Commit
29c6051
·
1 Parent(s): 30e30d4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -3,8 +3,12 @@ FROM python:3.11.0
3
 
4
 
5
 
6
- RUN git clone https://github.com/srbhr/Resume-Matcher.git && cd Resume-Matcher && pip install -r requirements.txt && python run_first.py && streamlit run streamlit_app.py
7
 
8
 
 
 
9
 
 
 
10
 
 
3
 
4
 
5
 
6
+ RUN git clone https://github.com/srbhr/Resume-Matcher.git && cd Resume-Matcher && pip install -r requirements.txt && python run_first.py
7
 
8
 
9
+ # 开放端口
10
+ EXPOSE 8080
11
 
12
+ # 启动命令
13
+ CMD ["cd Resume-Matcher && streamlit run streamlit_app.py"]
14