celia / Dockerfile
theonlykid's picture
Update Dockerfile
090c6e2 verified
raw
history blame contribute delete
No virus
301 Bytes
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"]