Spaces:
Sleeping
Sleeping
File size: 385 Bytes
a4169d0 9292941 a4169d0 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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"] |