We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de51869 commit 1a791bcCopy full SHA for 1a791bc
.devops/llama-server-cuda.Dockerfile
@@ -13,10 +13,11 @@ ENV TZ=Africa/Johannesburg
13
# CUDA architecture to build for (defaults to all supported archs)
14
ARG CUDA_DOCKER_ARCH=default
15
16
-RUN apt-get update && \
17
- apt-get install -y build-essential git cmake libcurl4-openssl-dev
18
-
19
-WORKDIR /app
+RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo apt-key add -WORKDIR /app && \
+ apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' && \
+ apt-get update && \
+ apt-get install -y build-essential git cmake libcurl4-openssl-dev && \
20
+ apt-get install cmake
21
22
COPY . .
23
0 commit comments