From 34136a2c0d87faa4db2cf42b030344d65e95707b Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 21 Oct 2023 14:22:20 -0700 Subject: [PATCH] (fix) proxy server dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3bd6b447c..06fce4ea7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ WORKDIR /app RUN pip install -r requirements.txt WORKDIR /app/litellm-proxy -EXPOSE 8000 +EXPOSE $PORT -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "${PORT}"] \ No newline at end of file +CMD exec uvicorn main:app --host 0.0.0.0 --port $PORT \ No newline at end of file