Spaces:
Sleeping
Sleeping
File size: 673 Bytes
5225280 66c1b2e b7b6711 5225280 d5d2c27 5225280 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# Use an alias for the base image for easier updates
FROM python:3.10 as base
# Set model
ENV MODEL=TheBloke/Beyonder-4x7B-v2-GGUF
ENV QUANT=Q3_K_M
ENV CHAT_TEMPLATE=chatml
# Set the working directory
WORKDIR /app
# Install Python requirements
COPY ./requirements.txt /app/
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Download model
RUN MODEL_NAME_FILE=$(echo ${MODEL#*/} | tr '[:upper:]' '[:lower:]' | sed 's/-gguf$//') && \
wget https://huggingface.co/TheBloke/Beyonder-4x7B-v2-GGUF/resolve/main/beyonder-4x7b-v2.Q3_K_M.gguf -O model.gguf
# Copy the rest of your application
COPY . .
# Command to run the application
CMD ["python", "app.py"]
|