Spaces:
Sleeping
Sleeping
| FROM python:3.10 | |
| WORKDIR /code | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
| COPY ./kobold /code/kobold | |
| COPY ./dolphin.gguf /code/dolphin.gguf | |
| COPY . . | |
| RUN chmod +x kobold | |
| RUN ls -la | |
| CMD ["./kobold", "dolphin.gguf", "--port", "7860"] | |