Update Dockerfile
Browse files- 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
|
| 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 |
|