Skip to content
Snippets Groups Projects
Commit 2ec88bfe authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[dockerfile] Add installation of libegl1

parent 8ef87aa2
No related branches found
No related tags found
No related merge requests found
Pipeline #86814 failed
...@@ -16,7 +16,7 @@ FROM nvidia/cuda:12.3.1-runtime-ubuntu22.04 AS production ...@@ -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 /app/.pixi/envs/cuda-base /app/.pixi/envs/cuda-base
COPY --from=build /entrypoint.sh /entrypoint.sh COPY --from=build /entrypoint.sh /entrypoint.sh
RUN apt update \ 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 \ && apt-get clean && apt-get autoclean && apt-get autoremove \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment