File size: 301 Bytes
090c6e2
c972ffd
 
 
 
37949cf
c972ffd
6248159
4faf6d5
c972ffd
 
37949cf
 
 
4faf6d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"]