FROM ghcr.io/berriai/litellm:main-latest # Set the working directory to /app WORKDIR /app # Copy the configuration file into the container at /app COPY config.yaml . EXPOSE 4000 #ENTRYPOINT ["litellm"] CMD ["--port", "4000", "--config", "./config.yaml", "--num_workers", "1", "--telemetry", "False"]