Skip to content

Commit b36aeb0

Browse files
committed
Updated dockerfiles
1 parent 0ec87d4 commit b36aeb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile.cuda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ARG ARCH
4444
ARG CUDA
4545

4646
RUN apt-get update \
47-
&& apt-get -y install ca-certificates gnupg wget libgomp1 \
47+
&& apt-get -y install ca-certificates gnupg wget \
4848
&& wget https://developer.download.nvidia.com/compute/cuda/repos/${DISTRO}/${ARCH}/cuda-keyring_1.1-1_all.deb \
4949
&& dpkg -i cuda-keyring_1.1-1_all.deb \
5050
&& rm cuda-keyring_1.1-1_all.deb \

Dockerfile.llamacpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ARG ARCH
2121
ARG BASE_IMAGE_BUILD
2222
ARG BASE_IMAGE_RUNTIME
2323

24-
RUN apt-get -y install libcurl4 curl
24+
RUN apt-get -y install libcurl4 curl libgomp1
2525
COPY --from=build /app/llama.cpp/llama-server /usr/local/bin/llama-server
2626
HEALTHCHECK CMD [ "curl", "-f", "http://localhost:8080/health" ]
2727
ENTRYPOINT [ "/usr/local/bin/llama-server" ]

0 commit comments

Comments
 (0)