Spaces:
Running
Running
File size: 798 Bytes
b7edcbf 5370d8d 30ad6bb b7edcbf 5370d8d b7edcbf 5370d8d b7edcbf 5370d8d b7edcbf 5370d8d |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 |
ARG UBUNTU_VERSION=22.04
ARG BASE_CPU_CONTAINER=ubuntu:${UBUNTU_VERSION}
FROM ${BASE_CPU_CONTAINER} as build
RUN apt-get update && \
apt-get install -y build-essential git make cmake wget
WORKDIR /build
RUN git clone https://github.com/ggerganov/llama.cpp.git
WORKDIR /build/llama.cpp
ENV LDFLAGS="-static"
RUN make llama-server
WORKDIR /data
RUN wget https://huggingface.co/matteogeniaccio/phi-4/resolve/main/phi-4-Q6_K.gguf -nv -O model.gguf
FROM ${BASE_CPU_CONTAINER} as runtime
WORKDIR /app
# Copy the executable from the build stage
COPY --from=build /build/llama.cpp/llama-server /app
COPY --from=build /data/model.gguf /data/model.gguf
COPY ./run.sh /app/run.sh
WORKDIR /app
EXPOSE 7860
# Make the script executable
RUN chmod +x run.sh
# CMD to run your script
CMD ./run.sh |