Kukedlc's picture
Upload 8 files
659616e verified
raw
history blame contribute delete
366 Bytes
FROM python:3.10
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN wget https://huggingface.co/Kukedlc/NeuralKukedlc-7B-Labonned-GGUF/resolve/main/neuralkukedlc-7b-labonned.Q4_K_M.gguf -O model.gguf
RUN useradd -m -u 1000 user
USER user
COPY --chown=user . .
CMD ["python", "app.py"]