Hemanth commited on
Commit
3995db3
·
unverified ·
1 Parent(s): 2c8e1d6

moved copy file to later into build (#288)

Browse files
Files changed (1) hide show
  1. 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
- RUN python run_first.py
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"]