mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 15:29:43 +00:00
0e730dd23b
Git added to build packages for version information in docker image Signed-off-by: Jiri Podivin <jpodivin@gmail.com>
18 lines
264 B
Docker
18 lines
264 B
Docker
ARG UBUNTU_VERSION=22.04
|
|
|
|
FROM ubuntu:$UBUNTU_VERSION as build
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y build-essential git
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN make
|
|
|
|
FROM ubuntu:$UBUNTU_VERSION as runtime
|
|
|
|
COPY --from=build /app/main /main
|
|
|
|
ENTRYPOINT [ "/main" ]
|