Skip to content

Commit

Permalink
fix path in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
DCRepublic committed Dec 22, 2024
1 parent a9e042e commit 7532494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ COPY ./requirements.txt ./requirements.txt

RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt

COPY ./app .
COPY ./app /app

CMD ["fastapi", "run", "app/endpoint.py", "--port", "5555", "--host", "0.0.0.0"]
CMD ["fastapi", "run", "/app/endpoint.py", "--port", "5555", "--host", "0.0.0.0"]

0 comments on commit 7532494

Please sign in to comment.