From 0d56115336cb322ff413b8fb3b8e4046ffaeef91 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 10 Jan 2024 21:56:34 +0530 Subject: [PATCH] (fix) Dockerfile use same entrypoint as Dockerfile.database --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b701cd49..183f06205 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,8 +51,5 @@ RUN chmod +x entrypoint.sh EXPOSE 4000/tcp -# Set your entrypoint and command - if user wants to use Prisma Database -ENTRYPOINT ["sh", "-c", "[ -n \"$DATABASE_URL\" ] && ./entrypoint.sh"] - -# this allows accepting litellm args -CMD ["litellm", "--port", "4000"] \ No newline at end of file +ENTRYPOINT ["litellm"] +CMD ["--port", "4000"] \ No newline at end of file