(fix) Dockerfile use same entrypoint as Dockerfile.database

This commit is contained in:
ishaan-jaff 2024-01-10 21:56:34 +05:30
parent 1ff9785c6b
commit 0d56115336

View file

@ -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"]
ENTRYPOINT ["litellm"]
CMD ["--port", "4000"]