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