celia / Dockerfile
theonlykid's picture
Update Dockerfile
4faf6d5 verified
raw
history blame
300 Bytes
FROM python:3.9
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"]