mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-29 06:54:59 +00:00
fix: make sure ca-certificates is present in the container images (#342)
This commit is contained in:
parent
4aa78843c0
commit
9630be56e1
2 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,7 @@ ARG BUILD_TYPE=
|
||||||
FROM golang:$GO_VERSION
|
FROM golang:$GO_VERSION
|
||||||
ENV REBUILD=true
|
ENV REBUILD=true
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
RUN apt-get update && apt-get install -y cmake libgomp1 libopenblas-dev libopenblas-base libopencv-dev libopencv-core-dev libopencv-core4.5
|
RUN apt-get update && apt-get install -y cmake libgomp1 libopenblas-dev libopenblas-base libopencv-dev libopencv-core-dev libopencv-core4.5 ca-certificates
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN ln -s /usr/include/opencv4/opencv2/ /usr/include/opencv2
|
RUN ln -s /usr/include/opencv4/opencv2/ /usr/include/opencv2
|
||||||
RUN make build
|
RUN make build
|
||||||
|
|
|
@ -11,5 +11,6 @@ RUN make build
|
||||||
|
|
||||||
FROM debian:$DEBIAN_VERSION
|
FROM debian:$DEBIAN_VERSION
|
||||||
COPY --from=builder /build/local-ai /usr/bin/local-ai
|
COPY --from=builder /build/local-ai /usr/bin/local-ai
|
||||||
|
RUN apt-get update && apt-get install -y ca-certificates
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
ENTRYPOINT [ "/usr/bin/local-ai" ]
|
ENTRYPOINT [ "/usr/bin/local-ai" ]
|
Loading…
Add table
Add a link
Reference in a new issue