ENV GGML_CUDA=1
RUN apt-get update && \
- apt-get install -y build-essential libsdl2-dev wget \
+ apt-get install -y build-essential libsdl2-dev wget cmake \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
# Ref: https://stackoverflow.com/a/53464012
WORKDIR /app
RUN apt-get update && \
- apt-get install -y curl ffmpeg wget \
+ apt-get install -y curl ffmpeg wget cmake \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
COPY --from=build /app /app
WORKDIR /app
RUN apt-get update && \
- apt-get install -y build-essential wget \
+ apt-get install -y build-essential wget cmake \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
COPY .. .
WORKDIR /app
RUN apt-get update && \
- apt-get install -y curl ffmpeg libsdl2-dev wget \
+ apt-get install -y curl ffmpeg libsdl2-dev wget cmake \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
COPY --from=build /app /app