umlim-openai / Dockerfile
API-Handler's picture
Update Dockerfile
e5e93d6 verified
raw
history blame
359 Bytes
FROM python:3.10
WORKDIR /code
COPY . .
RUN wget https://huggingface.co/datasets/DevsDoCode/openai/resolve/main/api_handler.py
RUN wget https://huggingface.co/datasets/DevsDoCode/openai/resolve/main/main.py
RUN wget https://huggingface.co/datasets/DevsDoCode/openai/resolve/main/models.py
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]