Chat-1 / Dockerfile
crystalkalem's picture
Update Dockerfile
795de1b verified
raw
history blame contribute delete
No virus
363 Bytes
FROM python:3.10
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt && \
wget https://huggingface.co/mradermacher/Solstice-11B-v1-i1-GGUF/resolve/main/Solstice-11B-v1.i1-Q6_K.gguf -O model.gguf && \
useradd -m -u 1000 user
USER user
COPY --chown=user . .
CMD ["python", "app.py"]