litellm / Dockerfile
lemonteaa's picture
Update Dockerfile
ca4edf7 verified
raw
history blame
No virus
238 Bytes
FROM ghcr.io/berriai/litellm:main-v1.38.8-stable
RUN chown -R 1000:1000 /root /app
USER 1000
ENV HOME=/root
WORKDIR /app
COPY litellm_config.yaml .
RUN chmod +x entrypoint.sh
CMD ["--port", "7860", "--config", "litellm_config.yaml"]