Spaces:
Runtime error
Runtime error
Hemanth commited on
moved copy file to later into build (#288)
Browse files- build.dockerfile +4 -4
build.dockerfile
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
FROM python:3.11.0-slim
|
| 2 |
WORKDIR /data/Resume-Matcher
|
| 3 |
-
COPY . .
|
| 4 |
RUN apt-get update
|
| 5 |
RUN apt-get install -y build-essential python-dev git
|
| 6 |
RUN pip install -U pip setuptools wheel
|
|
|
|
| 7 |
RUN pip install -r requirements.txt
|
| 8 |
-
|
| 9 |
-
ENTRYPOINT [ "streamlit", "run", "streamlit_app.py"]
|
| 10 |
-
|
| 11 |
EXPOSE 8501
|
|
|
|
|
|
|
|
|
| 1 |
FROM python:3.11.0-slim
|
| 2 |
WORKDIR /data/Resume-Matcher
|
|
|
|
| 3 |
RUN apt-get update
|
| 4 |
RUN apt-get install -y build-essential python-dev git
|
| 5 |
RUN pip install -U pip setuptools wheel
|
| 6 |
+
COPY requirements.txt requirements.txt
|
| 7 |
RUN pip install -r requirements.txt
|
| 8 |
+
COPY . .
|
|
|
|
|
|
|
| 9 |
EXPOSE 8501
|
| 10 |
+
RUN python run_first.py
|
| 11 |
+
ENTRYPOINT [ "streamlit", "run", "streamlit_app.py"]
|