From 75324944e6b2b97493233ba91d3cfd1c3a0ad2ca Mon Sep 17 00:00:00 2001 From: Damian Date: Sun, 22 Dec 2024 00:36:32 -0500 Subject: [PATCH] fix path in dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ce4204f..639c9b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +CMD ["fastapi", "run", "/app/endpoint.py", "--port", "5555", "--host", "0.0.0.0"] \ No newline at end of file