File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ FROM ${BASE_CUDA_DEV_CONTAINER} as build
1212ARG CUDA_DOCKER_ARCH=all
1313
1414RUN apt-get update && \
15- apt-get install -y build-essential git cmake libsdl2-dev wget
15+ apt-get install -y build-essential git cmake libsdl2-dev wget git
1616
1717WORKDIR /app
1818
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ENV CUDA_DOCKER_ARCH=${CUDA_DOCKER_ARCH}
1717ENV GGML_CUDA=1
1818
1919RUN apt-get update && \
20- apt-get install -y build-essential libsdl2-dev wget cmake \
20+ apt-get install -y build-essential libsdl2-dev wget cmake git \
2121 && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
2222
2323# Ref: https://stackoverflow.com/a/53464012
@@ -33,7 +33,7 @@ ENV LD_LIBRARY_PATH /usr/local/cuda-${CUDA_MAIN_VERSION}/compat:$LD_LIBRARY_PATH
3333WORKDIR /app
3434
3535RUN apt-get update && \
36- apt-get install -y curl ffmpeg wget cmake \
36+ apt-get install -y curl ffmpeg wget cmake git \
3737 && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
3838
3939COPY --from=build /app /app
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM ubuntu:22.04 AS build
22WORKDIR /app
33
44RUN apt-get update && \
5- apt-get install -y build-essential wget cmake \
5+ apt-get install -y build-essential wget cmake git \
66 && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
77
88COPY .. .
@@ -12,7 +12,7 @@ FROM ubuntu:22.04 AS runtime
1212WORKDIR /app
1313
1414RUN apt-get update && \
15- apt-get install -y curl ffmpeg libsdl2-dev wget cmake \
15+ apt-get install -y curl ffmpeg libsdl2-dev wget cmake git \
1616 && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
1717
1818COPY --from=build /app /app
Original file line number Diff line number Diff line change @@ -393,6 +393,7 @@ jobs:
393393 msystem : ${{matrix.sys}}
394394 install : >-
395395 base-devel
396+ git
396397 mingw-w64-${{matrix.env}}-toolchain
397398 mingw-w64-${{matrix.env}}-cmake
398399 mingw-w64-${{matrix.env}}-SDL2
You can’t perform that action at this time.
0 commit comments