Skip to content

Commit

Permalink
⚡ change dockerfile instruction order
Browse files Browse the repository at this point in the history
  • Loading branch information
ddoddii committed Jan 11, 2024
1 parent b5de099 commit 105d879
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ FROM python:3.10

WORKDIR /app/

COPY . /app/
COPY ./requirements.txt /app/

RUN pip install -r requirements.txt

VOLUME /app/resume-db

COPY . /app/

CMD uvicorn --host=0.0.0.0 --port 8000 main:app

0 comments on commit 105d879

Please sign in to comment.