From 4e3750b0172cd5b83c01d3fa7fd6d46bf0b61be7 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 6 Jan 2024 16:01:59 +0530 Subject: [PATCH] build(Dockerfile): keep exposed port consistent --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e46a9d6b8e..87d6bcb745 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,8 +30,8 @@ RUN if [ "$with_database" = "true" ]; then \ /app/retry_push.sh; \ fi -EXPOSE 8000/tcp +EXPOSE 4000/tcp # Set your entrypoint and command ENTRYPOINT ["litellm"] -CMD ["--config", "./proxy_server_config.yaml", "--port", "8000", "--num_workers", "8"] \ No newline at end of file +CMD ["--port", "4000"] \ No newline at end of file