Resume / Dockerfile
alex-yu's picture
Update Dockerfile
29c6051
raw
history blame contribute delete
288 Bytes
# 使用基础镜像
FROM python:3.11.0
RUN git clone https://github.com/srbhr/Resume-Matcher.git && cd Resume-Matcher && pip install -r requirements.txt && python run_first.py
# 开放端口
EXPOSE 8080
# 启动命令
CMD ["cd Resume-Matcher && streamlit run streamlit_app.py"]