From 1b2fab28b5c13a46c5e67fbeb65733bf430153ed Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 5 Jan 2024 19:09:10 +0530 Subject: [PATCH] build(dockerfile): exposed port fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 180bde57a..ea7b78da5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,8 +57,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", "./hosted_config.yaml", "--port", "8000", "--num_workers", "8"] \ No newline at end of file +CMD ["--config", "./hosted_config.yaml", "--port", "4000", "--num_workers", "8"] \ No newline at end of file