mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-13 00:39:47 +00:00
17 lines
336 B
Docker
17 lines
336 B
Docker
|
ARG UBUNTU_VERSION=22.04
|
||
|
|
||
|
FROM ubuntu:$UBUNTU_VERSION as build
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y build-essential python3 python3-pip
|
||
|
|
||
|
RUN pip install --upgrade pip setuptools wheel \
|
||
|
&& pip install torch torchvision torchaudio sentencepiece numpy
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN make
|
||
|
|
||
|
ENTRYPOINT ["/app/.devops/tools.sh"]
|