From ada2f9f062e36d1648527819648b033636809308 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 21 Oct 2023 14:09:11 -0700 Subject: [PATCH] (fix) proxy server dockerfile for railway --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a7b5828d1..09b4d9124 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,5 @@ RUN pip install -r requirements.txt WORKDIR /app/litellm-proxy EXPOSE 8000 -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", $PORT] \ No newline at end of file + +CMD ["python3", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", $PORT] \ No newline at end of file