diff --git a/Dockerfile b/Dockerfile
index 55b24aff101a523a95bee85ff69a05612e8d7b5f..f123151d7f3cde6cdd24d2af9f1c17d43b50f18b 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