(chore) remove old dockerfile

This commit is contained in:
ishaan-jaff 2023-11-17 17:37:00 -08:00
parent d1af0af7bf
commit fd7f17b11b

View file

@ -1,10 +0,0 @@
FROM python:3.10
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
WORKDIR /app/litellm_server
EXPOSE $PORT
CMD exec uvicorn main:app --host 0.0.0.0 --port $PORT