(fix) proxy dockerfile

This commit is contained in:
ishaan-jaff 2023-10-21 16:24:18 -07:00
parent a05e3d2d8b
commit 330a89bdb1

View file

@ -5,7 +5,7 @@ COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
WORKDIR /app/litellm-proxy
WORKDIR /app/openai-proxy
EXPOSE $PORT
CMD exec uvicorn main:app --host 0.0.0.0 --port $PORT