umlim-openai / Dockerfile
API-Handler's picture
Update Dockerfile
9292941 verified
raw
history blame
385 Bytes
FROM python:3.10
WORKDIR /code
COPY . .
RUN wget https://huggingface.co/datasets/API-Handler/unlim-openai/resolve/main/apiHandler.js
RUN wget https://huggingface.co/datasets/API-Handler/unlim-openai/resolve/main/api_keys.txt
RUN wget https://huggingface.co/datasets/API-Handler/unlim-openai/resolve/main/server.js
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]