Spaces:
Sleeping
Sleeping
File size: 338 Bytes
46917c3 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.11.0-slim
WORKDIR /data/Resume-Matcher
RUN apt-get update
RUN apt-get install -y build-essential python-dev git
RUN pip install -U pip setuptools wheel
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8501
RUN python run_first.py
ENTRYPOINT [ "streamlit", "run", "streamlit_app.py"] |