Skip to content

Commit

Permalink
moved copy file to later into build (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hemanth-Thaluru authored Oct 22, 2024
1 parent 2e42634 commit 1332ee5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.11.0-slim
WORKDIR /data/Resume-Matcher
COPY . .
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
RUN python run_first.py
ENTRYPOINT [ "streamlit", "run", "streamlit_app.py"]

COPY . .
EXPOSE 8501
RUN python run_first.py
ENTRYPOINT [ "streamlit", "run", "streamlit_app.py"]

0 comments on commit 1332ee5

Please sign in to comment.