From 61c2fed773a7fc7dccf129e67bb4e434e02cffd0 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Sat, 27 May 2023 07:35:41 +0200 Subject: [PATCH] update dockerfile for server-non-gpu --- server/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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