Files
llama.cpp/.devops/full.Dockerfile
T

26 lines
450 B
Docker
Raw Normal View History

2023-03-17 10:47:06 +01:00
ARG UBUNTU_VERSION=22.04
FROM ubuntu:$UBUNTU_VERSION as build
RUN apt-get update && \
apt-get install -y build-essential python3 python3-pip git libcurl4-openssl-dev
2023-03-17 10:47:06 +01:00
COPY requirements.txt requirements.txt
COPY requirements requirements
2023-04-14 15:37:11 +02:00
2023-03-17 10:47:06 +01:00
RUN pip install --upgrade pip setuptools wheel \
2023-04-14 15:37:11 +02:00
&& pip install -r requirements.txt
2023-03-17 10:47:06 +01:00
WORKDIR /app
COPY . .
ENV LLAMA_CURL=1
2023-03-17 10:47:06 +01:00
RUN make
ENV LC_ALL=C.utf8
2023-03-20 08:24:11 +00:00
ENTRYPOINT ["/app/.devops/tools.sh"]