diff --git a/server/Dockerfile b/server/Dockerfile index cbf8e46..2720ea2 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,11 +1,11 @@ -FROM python:bullseye +FROM ubuntu:latest RUN apt-get update; \ apt-get install -y --no-install-recommends \ - build-essential + build-essential cmake python3 python3-pip WORKDIR /usr/src/app -RUN pip install --no-cache-dir llama-cpp-python[server] +RUN pip3 install llama-cpp-python[server] CMD python3 -m llama_cpp.server \ No newline at end of file