From 2ec88bfedcad98cb323411c79ddf04852f6afb9e Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Fri, 3 May 2024 13:47:41 +0200 Subject: [PATCH] [dockerfile] Add installation of libegl1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 55b24aff..f123151d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ FROM nvidia/cuda:12.3.1-runtime-ubuntu22.04 AS production COPY --from=build /app/.pixi/envs/cuda-base /app/.pixi/envs/cuda-base COPY --from=build /entrypoint.sh /entrypoint.sh RUN apt update \ - && apt install -y libgl1-mesa-glx > /dev/null \ + && apt install -y libegl1 libgl1-mesa-glx > /dev/null \ && apt-get clean && apt-get autoclean && apt-get autoremove \ && rm -rf /var/lib/apt/lists/* WORKDIR /app -- GitLab