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